WikiFunctions.Range.this C# (CSharp) Method

this() public method

public this ( int index ) : object
index int
return object
        public object this[int index]
        {
            get
            {
                Check();
                if (index < 0 || index >= count)
                    throw new ArgumentException("index");
                return list[index + start];
            }
        }

Same methods

Range::this ( int index ) : objectIList.System