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