//文字列をint型に変換 int i = int.Parse(“100”);
//文字列をlong型に変換 long l = long.Parse(“100”);
//文字列をfloat型に変換 float f = float.Parse(“100.1”);
//文字列をdouble型に変換 double d = double.Parse(“100.1”);
//文字列をbool型に変換 bool b = bool.Parse(“True”);
ishi