Parse Method
[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]
Converts the string representation of a number to its 64-bit unsigned integer equivalent.
This API is not CLS-compliant. The CLS-compliant alternative is Parse.
Namespace: System
Assembly: mscorlib (in mscorlib.dll)
Syntax
'Declaration
<CLSCompliantAttribute(False)> _
Public Shared Function Parse ( _
s As String _
) As ULong
[CLSCompliantAttribute(false)]
public static ulong Parse(
string s
)
[CLSCompliantAttribute(false)]
public:
static unsigned long long Parse(
String^ s
)
[<CLSCompliantAttribute(false)>]
static member Parse :
s:string -> uint64
public static function Parse(
s : String
) : ulong
Parameters
- s
Type: System. . :: . .String
A string that represents the number to convert.
Return Value
Type: System. . :: . .UInt64
A 64-bit unsigned integer equivalent to the number contained in s.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see dd66cd4c-b087-415f-9c3e-94e3a1835f74.