IntPtr.Parse 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
Parse(String, NumberStyles, IFormatProvider) |
Converts the string representation of a number in a specified style and culture-specific format to its signed native integer equivalent. |
Parse(ReadOnlySpan<Char>, NumberStyles, IFormatProvider) |
Converts the read-only span of characters representation of a number in a specified style and culture-specific format to its signed native integer equivalent. |
Parse(ReadOnlySpan<Byte>, NumberStyles, IFormatProvider) |
Parses a span of UTF-8 characters into a value. |
Parse(String, IFormatProvider) |
Converts the string representation of a number in a specified culture-specific format to its signed native integer equivalent. |
Parse(String, NumberStyles) |
Converts the string representation of a number in a specified style to its signed native integer equivalent. |
Parse(ReadOnlySpan<Char>, IFormatProvider) |
Parses a span of characters into a value. |
Parse(ReadOnlySpan<Byte>, IFormatProvider) |
Parses a span of UTF-8 characters into a value. |
Parse(String) |
Converts the string representation of a number to its signed native integer equivalent. |
Parse(String, NumberStyles, IFormatProvider)
- Source:
- IntPtr.cs
- Source:
- IntPtr.cs
- Source:
- IntPtr.cs
Converts the string representation of a number in a specified style and culture-specific format to its signed native integer equivalent.
public:
static IntPtr Parse(System::String ^ s, System::Globalization::NumberStyles style, IFormatProvider ^ provider);
public:
static IntPtr Parse(System::String ^ s, System::Globalization::NumberStyles style, IFormatProvider ^ provider) = System::Numerics::INumberBase<IntPtr>::Parse;
public static IntPtr Parse (string s, System.Globalization.NumberStyles style, IFormatProvider? provider);
static member Parse : string * System.Globalization.NumberStyles * IFormatProvider -> nativeint
Public Shared Function Parse (s As String, style As NumberStyles, provider As IFormatProvider) As IntPtr
Parameters
- s
- String
A string containing a number to convert.
- style
- NumberStyles
A bitwise combination of the enumeration values that indicates the style elements that can be present in s
.
- provider
- IFormatProvider
An object that supplies culture-specific formatting information about s
.
Returns
nativeint
A signed native integer equivalent to the number contained in s
.
Implements
Exceptions
s
is null
.
style
is not a NumberStyles value or style
is not a combination of AllowHexSpecifier and HexNumber values.
s
is not in the correct format.
Applies to
Parse(ReadOnlySpan<Char>, NumberStyles, IFormatProvider)
- Source:
- IntPtr.cs
- Source:
- IntPtr.cs
- Source:
- IntPtr.cs
Converts the read-only span of characters representation of a number in a specified style and culture-specific format to its signed native integer equivalent.
public static IntPtr Parse (ReadOnlySpan<char> s, System.Globalization.NumberStyles style = System.Globalization.NumberStyles.Integer, IFormatProvider? provider = default);
static member Parse : ReadOnlySpan<char> * System.Globalization.NumberStyles * IFormatProvider -> nativeint
Public Shared Function Parse (s As ReadOnlySpan(Of Char), Optional style As NumberStyles = System.Globalization.NumberStyles.Integer, Optional provider As IFormatProvider = Nothing) As IntPtr
Parameters
- s
- ReadOnlySpan<Char>
A read-only span of characters containing a number to convert.
- style
- NumberStyles
A bitwise combination of the enumeration values that indicates the style elements that can be present in s
.
- provider
- IFormatProvider
An object that supplies culture-specific formatting information about s
.
Returns
nativeint
A signed native integer equivalent to the number contained in s
.
Implements
Exceptions
style
is not a NumberStyles value or style
is not a combination of AllowHexSpecifier and HexNumber values.
s
is not in the correct format.
Applies to
Parse(ReadOnlySpan<Byte>, NumberStyles, IFormatProvider)
- Source:
- IntPtr.cs
- Source:
- IntPtr.cs
Parses a span of UTF-8 characters into a value.
public static IntPtr Parse (ReadOnlySpan<byte> utf8Text, System.Globalization.NumberStyles style = System.Globalization.NumberStyles.Integer, IFormatProvider? provider = default);
static member Parse : ReadOnlySpan<byte> * System.Globalization.NumberStyles * IFormatProvider -> nativeint
Public Shared Function Parse (utf8Text As ReadOnlySpan(Of Byte), Optional style As NumberStyles = System.Globalization.NumberStyles.Integer, Optional provider As IFormatProvider = Nothing) As IntPtr
Parameters
- utf8Text
- ReadOnlySpan<Byte>
The span of UTF-8 characters to parse.
- style
- NumberStyles
A bitwise combination of number styles that can be present in utf8Text
.
- provider
- IFormatProvider
An object that provides culture-specific formatting information about utf8Text
.
Returns
nativeint
The result of parsing utf8Text
.
Implements
Applies to
Parse(String, IFormatProvider)
- Source:
- IntPtr.cs
- Source:
- IntPtr.cs
- Source:
- IntPtr.cs
Converts the string representation of a number in a specified culture-specific format to its signed native integer equivalent.
public:
static IntPtr Parse(System::String ^ s, IFormatProvider ^ provider);
public:
static IntPtr Parse(System::String ^ s, IFormatProvider ^ provider) = IParsable<IntPtr>::Parse;
public static IntPtr Parse (string s, IFormatProvider? provider);
static member Parse : string * IFormatProvider -> nativeint
Public Shared Function Parse (s As String, provider As IFormatProvider) As IntPtr
Parameters
- s
- String
A string containing a number to convert.
- provider
- IFormatProvider
An object that supplies culture-specific formatting information about s
.
Returns
nativeint
A signed native integer equivalent to the number contained in s
.
Implements
Exceptions
s
is null
.
s
is not in the correct format.
Applies to
Parse(String, NumberStyles)
- Source:
- IntPtr.cs
- Source:
- IntPtr.cs
- Source:
- IntPtr.cs
Converts the string representation of a number in a specified style to its signed native integer equivalent.
public:
static IntPtr Parse(System::String ^ s, System::Globalization::NumberStyles style);
public static IntPtr Parse (string s, System.Globalization.NumberStyles style);
static member Parse : string * System.Globalization.NumberStyles -> nativeint
Public Shared Function Parse (s As String, style As NumberStyles) As IntPtr
Parameters
- s
- String
A string containing a number to convert.
- style
- NumberStyles
A bitwise combination of the enumeration values that indicates the style elements that can be present in s
.
Returns
nativeint
A signed native integer equivalent to the number contained in s
.
Exceptions
s
is null
.
style
is not a NumberStyles value or style
is not a combination of AllowHexSpecifier and HexNumber values.
s
is not in the correct format.
Applies to
Parse(ReadOnlySpan<Char>, IFormatProvider)
- Source:
- IntPtr.cs
- Source:
- IntPtr.cs
- Source:
- IntPtr.cs
Parses a span of characters into a value.
public:
static IntPtr Parse(ReadOnlySpan<char> s, IFormatProvider ^ provider) = ISpanParsable<IntPtr>::Parse;
public static IntPtr Parse (ReadOnlySpan<char> s, IFormatProvider? provider);
static member Parse : ReadOnlySpan<char> * IFormatProvider -> nativeint
Public Shared Function Parse (s As ReadOnlySpan(Of Char), provider As IFormatProvider) As IntPtr
Parameters
- s
- ReadOnlySpan<Char>
The span of characters to parse.
- provider
- IFormatProvider
An object that provides culture-specific formatting information about s
.
Returns
nativeint
The result of parsing s
.
Implements
Applies to
Parse(ReadOnlySpan<Byte>, IFormatProvider)
- Source:
- IntPtr.cs
- Source:
- IntPtr.cs
Parses a span of UTF-8 characters into a value.
public:
static IntPtr Parse(ReadOnlySpan<System::Byte> utf8Text, IFormatProvider ^ provider) = IUtf8SpanParsable<IntPtr>::Parse;
public static IntPtr Parse (ReadOnlySpan<byte> utf8Text, IFormatProvider? provider);
static member Parse : ReadOnlySpan<byte> * IFormatProvider -> nativeint
Public Shared Function Parse (utf8Text As ReadOnlySpan(Of Byte), provider As IFormatProvider) As IntPtr
Parameters
- utf8Text
- ReadOnlySpan<Byte>
The span of UTF-8 characters to parse.
- provider
- IFormatProvider
An object that provides culture-specific formatting information about utf8Text
.
Returns
nativeint
The result of parsing utf8Text
.
Implements
Applies to
Parse(String)
- Source:
- IntPtr.cs
- Source:
- IntPtr.cs
- Source:
- IntPtr.cs
Converts the string representation of a number to its signed native integer equivalent.
public:
static IntPtr Parse(System::String ^ s);
public static IntPtr Parse (string s);
static member Parse : string -> nativeint
Public Shared Function Parse (s As String) As IntPtr
Parameters
- s
- String
A string containing a number to convert.
Returns
nativeint
A signed native integer equivalent to the number contained in s
.
Exceptions
s
is null
.
s
is not in the correct format.