9 references to Parse
Microsoft.Extensions.Logging.Console (1)
_generated\0\BindingExtensions.g.cs (1)
602return char.Parse(value);
Microsoft.Maui.Controls.Build.Tasks (1)
NodeILExtensions.cs (1)
235 yield return Instruction.Create(OpCodes.Ldc_I4, unchecked((int)TryFormat(Char.Parse, node, str)));
Microsoft.ML.Core (1)
CommandLine\CmdParser.cs (1)
1877value = char.Parse(data);
System.Diagnostics.Process (1)
src\runtime\src\libraries\Common\src\System\IO\StringParser.cs (1)
226Debug.Assert(result == char.Parse(ExtractCurrent()), "Expected manually parsed result to match Parse result");
System.Net.NetworkInformation (1)
src\runtime\src\libraries\Common\src\System\IO\StringParser.cs (1)
226Debug.Assert(result == char.Parse(ExtractCurrent()), "Expected manually parsed result to match Parse result");
System.Private.CoreLib (3)
src\runtime\src\libraries\Common\src\System\IO\StringParser.cs (1)
226Debug.Assert(result == char.Parse(ExtractCurrent()), "Expected manually parsed result to match Parse result");
src\runtime\src\libraries\System.Private.CoreLib\src\System\Char.cs (2)
1559static char INumberBase<char>.Parse(string s, NumberStyles style, IFormatProvider? provider) => Parse(s); 2020static char IParsable<char>.Parse(string s, IFormatProvider? provider) => Parse(s);
System.Private.DataContractSerialization (1)
System\Runtime\Serialization\Json\ReflectionJsonFormatReader.cs (1)
216TypeCode.Char => char.Parse(keyString),