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