Alsing.SourceCode.UndoBlockCollection.this C# (CSharp) Метод

this() публичный Метод

public this ( int index ) : UndoBlock
index int
Результат UndoBlock
        public UndoBlock this[int index]
        {
            get
            {
                ValidateIndex(index); // throws
                return m_array[index];
            }
            set
            {
                ValidateIndex(index); // throws

                ++m_version;
                m_array[index] = value;
            }
        }

Same methods

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