2 writes to _compilerLanguages
dotnet-svcutil-lib (2)
FrameworkFork\Microsoft.CodeDom\Compiler\CompilerInfo.cs (1)
111_compilerLanguages = compilerLanguages;
FrameworkFork\Microsoft.CodeDom\Configuration\CodeDomCompilationConfiguration.cs (1)
36compilerInfo._compilerLanguages = new string[] { "c#", "cs", "csharp" };
5 references to _compilerLanguages
dotnet-svcutil-lib (5)
FrameworkFork\Microsoft.CodeDom\Compiler\CodeDOMProvider.cs (1)
37return compilerInfo._compilerLanguages[0]; // Return the first language name. There has to be one.
FrameworkFork\Microsoft.CodeDom\Compiler\CompilerInfo.cs (3)
159String[] compilerLanguages = new String[_compilerLanguages.Length]; 160Array.Copy(_compilerLanguages, compilerLanguages, _compilerLanguages.Length);
FrameworkFork\Microsoft.CodeDom\Configuration\CodeDomCompilationConfiguration.cs (1)
45foreach (string language in compilerInfo._compilerLanguages)