14 references to ToLower
Microsoft.CodeAnalysis (1)
InternalUtilities\StringExtensions.cs (1)
57private static readonly Func<char, char> s_toLower = char.ToLower;
Microsoft.CodeAnalysis.CodeStyle (3)
src\Compilers\Core\Portable\InternalUtilities\StringExtensions.cs (1)
57private static readonly Func<char, char> s_toLower = char.ToLower;
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\NamingStyles\NamingStyle.cs (2)
117chars[0] = char.ToLower(chars[0]); 304private static bool DoesCharacterHaveCasing(char c) => char.ToLower(c) != char.ToUpper(c);
Microsoft.CodeAnalysis.CSharp (1)
Parser\Lexer.cs (1)
1506(char.ToLower(TextWindow.PeekChar(1)) == 'x'))
Microsoft.CodeAnalysis.CSharp.Features (1)
EncapsulateField\CSharpEncapsulateFieldService.cs (1)
193=> char.ToLower(correspondingPropertyName[0]).ToString() + correspondingPropertyName[1..];
Microsoft.CodeAnalysis.EditorFeatures (1)
Lightup\LightupHelpers.cs (1)
503return char.ToLower(typeName[0]) + typeName.Substring(1);
Microsoft.CodeAnalysis.Features (1)
InlineHints\AbstractInlineParameterNameHintsService.cs (1)
277return char.ToLower(suffix.Span[0]) == parameterName[0] &&
Microsoft.CodeAnalysis.Workspaces (3)
src\Compilers\Core\Portable\InternalUtilities\StringExtensions.cs (1)
57private static readonly Func<char, char> s_toLower = char.ToLower;
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\Core\NamingStyles\NamingStyle.cs (2)
117chars[0] = char.ToLower(chars[0]); 304private static bool DoesCharacterHaveCasing(char c) => char.ToLower(c) != char.ToUpper(c);
Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost (1)
src\Compilers\Core\Portable\InternalUtilities\StringExtensions.cs (1)
57private static readonly Func<char, char> s_toLower = char.ToLower;
Microsoft.ML.LightGbm (1)
WrappedLightGbmInterface.cs (1)
278strBuf.Append(char.ToLower(c));
Microsoft.VisualStudio.LanguageServices (1)
Venus\ContainedDocument.cs (1)
1032var ch = char.ToLower(surfaceSnapshot[Math.Max(surfacePoint.Value - 1, 0)]);