Implemented interface member:
8 writes to
System.CodeDom (6)
System\CodeDom\Compiler\CodeGeneratorOptions.cs (6)
18set => _options[index] = value; 28set => _options[nameof(IndentString)] = value; 38set => _options[nameof(BracingStyle)] = value; 48set => _options[nameof(ElseOnClosing)] = value; 58set => _options[nameof(BlankLinesBetweenMembers)] = value; 68set => _options[nameof(VerbatimOrder)] = value;
System.Collections.Specialized (2)
System\Collections\Specialized\HybridDictionary.cs (2)
106list[key] = value; 112list[key] = value;
7 references to
System.CodeDom (6)
System\CodeDom\Compiler\CodeGeneratorOptions.cs (6)
17get => _options[index]; 25object o = _options[nameof(IndentString)]; 35object o = _options[nameof(BracingStyle)]; 45object o = _options[nameof(ElseOnClosing)]; 55object o = _options[nameof(BlankLinesBetweenMembers)]; 65object o = _options[nameof(VerbatimOrder)];
System.Collections.Specialized (1)
System\Collections\Specialized\HybridDictionary.cs (1)
77return cachedList[key];