int class : Oct() method
Description
Gets a string that represents the octal value.
Syntax
intInstance.Oct()
Arguments
None
Return value
Class | Description |
string | A string that represents the octal value. |
Sample code
//anyInt is a instance of int type.
string octal = anyInt.Oct();
Notes
It's a wrapper of the Microsoft.VisualBasic.Conversion.Oct(Int32).