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

this() public method

public this ( int index ) : System.CodeDom.CodeExpression
index int
return System.CodeDom.CodeExpression
        public CodeExpression this[int index] {
            get {
                return ((CodeExpression)(List[index]));
            }
            set {
                List[index] = value;
            }
        }