using System;class MainClass{ public static void Main(string[] args) { double myDbl = double.Parse("99.884"); Console.WriteLine("-> Value of myDbl: {0}", myDbl); }} - Value of myDbl: 99.884