Integer.ToOctalString(Int32) 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.
Returns a string representation of the integer argument as an unsigned integer in base 8.
[Android.Runtime.Register("toOctalString", "(I)Ljava/lang/String;", "")]
public static string ToOctalString (int i);
[<Android.Runtime.Register("toOctalString", "(I)Ljava/lang/String;", "")>]
static member ToOctalString : int -> string
Parameters
- i
- Int32
an integer to be converted to a string.
Returns
the string representation of the unsigned integer value represented by the argument in octal (base 8).
- Attributes
Remarks
Java documentation for java.lang.Integer.toOctalString(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.