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

this() public method

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