System.Collections.SortedList.SyncSortedList.SetByIndex C# (CSharp) 메소드

SetByIndex() 개인적인 메소드

private SetByIndex ( int index, Object value ) : void
index int
value Object
리턴 void
            public override void SetByIndex(int index, Object value)
            {
                lock (_root)
                {
                    _list.SetByIndex(index, value);
                }
            }