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

this() public method

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