Fan.Sys.Range.Range C# (CSharp) Method

Range() private method

private Range ( long start, long end, bool exclusive ) : System
start long
end long
exclusive bool
return System
        private Range(long start, long end, bool exclusive)
        {
            this.m_start = start;
              this.m_end = end;
              this.m_exclusive = exclusive;
        }