System.CodeDom.Compiler.CodeGeneratorOptions.this C# (CSharp) Method

this() public method

public this ( string index ) : object
index string
return object
        public object this[string index] {
            get {
                return options[index];
            }
            set {
                options[index] = value;
            }
        }
CodeGeneratorOptions