System.CodeDom.CodeStatementCollection.this C# (CSharp) Method

this() public method

public this ( int index ) : CodeStatement
index int
return CodeStatement
        public CodeStatement this[int index] {
            get {
                return ((CodeStatement)(List[index]));
            }
            set {
                List[index] = value;
            }
        }