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

this() public method

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