Integer.ParseUnsignedInt Method

Definition

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

Int32

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

Int32

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.

Applies to