System.Collections.SortedList.ValueList.this C# (CSharp) 메소드

this() 공개 메소드

public this ( int index ) : Object
index int
리턴 Object
            public virtual Object this[int index]
            {
                get
                {
                    return _sortedList.GetByIndex(index);
                }
                set
                {
                    throw new NotSupportedException(SR.NotSupported_SortedListNestedWrite);
                }
            }