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