11 references to ToLower
Microsoft.CodeAnalysis (3)
CommandLine\AnalyzerConfig.cs (2)
225
key = CaseInsensitiveComparison.
ToLower
(key);
228
value = CaseInsensitiveComparison.
ToLower
(value);
CommandLine\SarifVersion.cs (1)
47
switch (CaseInsensitiveComparison.
ToLower
(version))
Microsoft.CodeAnalysis.CodeStyle (2)
EditorConfigParser.cs (2)
93
key = CaseInsensitiveComparison.
ToLower
(key);
96
value = CaseInsensitiveComparison.
ToLower
(value);
Microsoft.CodeAnalysis.CSharp (1)
LanguageVersion.cs (1)
387
switch (CaseInsensitiveComparison.
ToLower
(version))
Microsoft.CodeAnalysis.VisualBasic (1)
Symbols\AnonymousTypes\CRC32.vb (1)
20
crc32 = Crc32Update(crc32, s_encoding.GetBytes(CaseInsensitiveComparison.
ToLower
(name)))
Microsoft.CodeAnalysis.Workspaces (4)
EditorConfigParser.cs (2)
93
key = CaseInsensitiveComparison.
ToLower
(key);
96
value = CaseInsensitiveComparison.
ToLower
(value);
Shared\Extensions\SourceTextExtensions.cs (2)
65
var normalized = caseSensitive ? value : CaseInsensitiveComparison.
ToLower
(value);
95
var normalized = caseSensitive ? value : CaseInsensitiveComparison.
ToLower
(value);