Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
float a = 76;
float a = 76;
string s = "76";
float b = float.parse(s);
//Produces 'true'
Console.WriteLine("a = b is {0}", a == b);