Char.INumberBase<Char>.TryParse Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
INumberBase<Char>.TryParse(String, NumberStyles, IFormatProvider, Char) | |
INumberBase<Char>.TryParse(ReadOnlySpan<Char>, NumberStyles, IFormatProvider, Char) |
INumberBase<Char>.TryParse(String, NumberStyles, IFormatProvider, Char)
- Source:
- Char.cs
- Source:
- Char.cs
- Source:
- Char.cs
static bool System.Numerics.INumberBase<System.Char>.TryParse(System::String ^ s, System::Globalization::NumberStyles style, IFormatProvider ^ provider, [Runtime::InteropServices::Out] char % result) = System::Numerics::INumberBase<char>::TryParse;
static bool INumberBase<char>.TryParse (string s, System.Globalization.NumberStyles style, IFormatProvider provider, out char result);
static member System.Numerics.INumberBase<System.Char>.TryParse : string * System.Globalization.NumberStyles * IFormatProvider * char -> bool
Shared Function TryParse (s As String, style As NumberStyles, provider As IFormatProvider, ByRef result As Char) As Boolean Implements INumberBase(Of Char).TryParse
Parameters
- s
- String
- style
- NumberStyles
- provider
- IFormatProvider
- result
- Char
Returns
Applies to
INumberBase<Char>.TryParse(ReadOnlySpan<Char>, NumberStyles, IFormatProvider, Char)
- Source:
- Char.cs
- Source:
- Char.cs
- Source:
- Char.cs
static bool System.Numerics.INumberBase<System.Char>.TryParse(ReadOnlySpan<char> s, System::Globalization::NumberStyles style, IFormatProvider ^ provider, [Runtime::InteropServices::Out] char % result) = System::Numerics::INumberBase<char>::TryParse;
static bool INumberBase<char>.TryParse (ReadOnlySpan<char> s, System.Globalization.NumberStyles style, IFormatProvider provider, out char result);
static member System.Numerics.INumberBase<System.Char>.TryParse : ReadOnlySpan<char> * System.Globalization.NumberStyles * IFormatProvider * char -> bool
Shared Function TryParse (s As ReadOnlySpan(Of Char), style As NumberStyles, provider As IFormatProvider, ByRef result As Char) As Boolean Implements INumberBase(Of Char).TryParse
Parameters
- s
- ReadOnlySpan<Char>
- style
- NumberStyles
- provider
- IFormatProvider
- result
- Char
Returns
Applies to
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.