Integer.ParseUnsignedInt 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
| ParseUnsignedInt(String) |
Parses the string argument as an unsigned decimal integer. |
| ParseUnsignedInt(String, Int32) |
Parses the string argument as an unsigned integer in the radix specified by the second argument. |
ParseUnsignedInt(String)
Parses the string argument as an unsigned decimal integer.
[Android.Runtime.Register("parseUnsignedInt", "(Ljava/lang/String;)I", "", ApiSince=26)]
public static int ParseUnsignedInt (string s);
[<Android.Runtime.Register("parseUnsignedInt", "(Ljava/lang/String;)I", "", ApiSince=26)>]
static member ParseUnsignedInt : string -> int
Parameters
- s
- String
a String containing the unsigned int
representation to be parsed
Returns
the unsigned integer value represented by the argument in decimal.
- Attributes
Remarks
Java documentation for java.lang.Integer.parseUnsignedInt(java.lang.String).
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.
Applies to
ParseUnsignedInt(String, Int32)
Parses the string argument as an unsigned integer in the radix specified by the second argument.
[Android.Runtime.Register("parseUnsignedInt", "(Ljava/lang/String;I)I", "", ApiSince=26)]
public static int ParseUnsignedInt (string s, int radix);
[<Android.Runtime.Register("parseUnsignedInt", "(Ljava/lang/String;I)I", "", ApiSince=26)>]
static member ParseUnsignedInt : string * int -> int
Parameters
- s
- String
the String containing the unsigned integer
representation to be parsed
- radix
- Int32
the radix to be used while parsing s.
Returns
the integer represented by the string argument in the specified radix.
- Attributes
Remarks
Java documentation for java.lang.Integer.parseUnsignedInt(java.lang.String, int).
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.