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