System.CodeDom.CodeAttributeArgumentCollection.this C# (CSharp) 메소드

this() 공개 메소드

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