「C#」Parseでstring型を数値型に変換するサンプル

書式
int.Parse(数値文字列)
long.Parse(数値文字列)
float.Parse(数値文字列)
decimal.Parse(数値文字列)
.Parse()を使用して、string型を数値型へ変換します。

使用例

using System;

namespace EnumDemo
{
  class Program
  {
    static void Main(string[] args)
    {
      //string→int型
      int resA = int.Parse("678");
      Console.WriteLine(resA);
      
      //string→long型
      long resB = long.Parse("678");
      Console.WriteLine(resB);
      
      //string→float型
      float resC = float.Parse("456");
      Console.WriteLine(resC);
      
      //string→decimal型
      decimal resD = decimal.Parse("789");
      Console.WriteLine(resD);
      
      //string→double型
      double resE = double.Parse("45.67");
      Console.WriteLine(resE);
    }
   
  }
}

実行結果

678
678
456
789
45.67

 

C#

Posted by arkgame