Returns this Value as a Double
Declaration Syntax
C# |
public double ToDouble()
Return Value
Itself as a Double
Examples
CopyC#
Sofu.Sofu.Value val = new Sofu.Sofu.Value("333.6"); //Note the String Console.Out.WriteLine(val.ToDouble() + 1.2); //Writes 334.8