Returns this Value as an Int64
Declaration Syntax
C# |
public long ToLong()
Return Value
Itself as an Integer
Examples
CopyC#
Sofu.Sofu.Value val = new Sofu.Sofu.Value("333"); //Note the String Console.Out.WriteLine(val.ToLong() + 1); //Writes 334