キャストによる型変換 ある型の値を別の型に変換する コメントをどうぞ //float型をint型に変換 float f = 1.5f; int i = (int)f; //”1″と表示される Console.WriteLine(i);