Long.ToUnsignedString Method

Definition

Overloads

ToUnsignedString(Int64, Int32)

Returns a string representation of the first argument as an unsigned integer value in the radix specified by the second argument.

ToUnsignedString(Int64)

Returns a string representation of the argument as an unsigned decimal value.

ToUnsignedString(Int64, Int32)

Returns a string representation of the first argument as an unsigned integer value in the radix specified by the second argument.

[Android.Runtime.Register("toUnsignedString", "(JI)Ljava/lang/String;", "", ApiSince=26)]
public static string ToUnsignedString (long i, int radix);
[<Android.Runtime.Register("toUnsignedString", "(JI)Ljava/lang/String;", "", ApiSince=26)>]
static member ToUnsignedString : int64 * int -> string

Parameters

i
Int64

an integer to be converted to an unsigned string.

radix
Int32

the radix to use in the string representation.

Returns

an unsigned string representation of the argument in the specified radix.

Attributes

Remarks

Java documentation for java.lang.Long.toUnsignedString(long, 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

ToUnsignedString(Int64)

Returns a string representation of the argument as an unsigned decimal value.

[Android.Runtime.Register("toUnsignedString", "(J)Ljava/lang/String;", "", ApiSince=26)]
public static string ToUnsignedString (long i);
[<Android.Runtime.Register("toUnsignedString", "(J)Ljava/lang/String;", "", ApiSince=26)>]
static member ToUnsignedString : int64 -> string

Parameters

i
Int64

an integer to be converted to an unsigned string.

Returns

an unsigned string representation of the argument.

Attributes

Remarks

Java documentation for java.lang.Long.toUnsignedString(long).

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