首先,创建一个c#程序
在代码编辑器中编写代码,点击Run按钮或者按下F5键来运行程序。
下面,编写将字符串类型转换为整数类型的代码。
sing System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Diagnostics;namespace ConsoleApp4
{class Program{static void Main(string[] args){//例一:将字符串转换为布尔类型//string isTrue = "true";// bool a = bool.Parse(isTrue);//Console.WriteLine(isTrue);//Console.ReadKey();//例二:将字符串类型转换为int类型string a = "12345";int b = int.Parse(a);Console.WriteLine(b);}}
}