Parsing : Float parse : Data Type C# Examples


C# Examples » Data Type » Float parse »

 

Parsing









    
using  System;
using  System.Collections.Generic;
using  System.Globalization;
using  System.IO;
using  System.Text;
using  System.Security.Cryptography;

public  class  MainClass
{
        public  static  void  Main()
        {

                int  i  =  int.Parse("550");
                float  f  =  float.Parse("21.99328");
                bool  b  =  bool.Parse("True");
        }
}
    
   
  
   




HTML code for linking to this page:

Follow Navioo On Twitter

C# Examples

 Navioo Data Type
» Float parse