System.Range.Range C# (CSharp) 메소드

Range() 공개 메소드

Construct a Range object using the start and end indexes.
public Range ( Index start, Index end ) : System.Diagnostics
start Index Represent the inclusive start index of the range.
end Index Represent the exclusive end index of the range.
리턴 System.Diagnostics
        public Range(Index start, Index end)
        {
            Start = start;
            End = end;
        }