Data type parsing : Convert from string « Data Type « C# / CSharp Tutorial






using System;
using System.Collections.Generic;
using System.Text;


  class Program
  {
    static void Main(string[] args)
    {
      bool b = bool.Parse("True");
      Console.WriteLine("Value of b: {0}", b);
      double d = double.Parse("99.884");
      Console.WriteLine("Value of d: {0}", d);
      int i = int.Parse("8");
      Console.WriteLine("Value of i: {0}", i);
      char c = Char.Parse("w");
      Console.WriteLine("Value of c: {0}", c);
    }

  }








2.51.Convert from string
2.51.1.New and old way to parse an int
2.51.2.new-style (v2.0) try-parse pattern
2.51.3.Type Conversion Using System.Convert
2.51.4.Using TryParse() in Place of an Invalid Cast Exception
2.51.5.Data type parsing
2.51.6.Convert.ToBase64CharArray() Convert.FromBase64CharArray
2.51.7.Example of the BitConverter.GetBytes( uint ) method.