关于C#中Convert.ToInt32()是干什么用的

并非每个对象都可以直接转换为int。例如,以下内容将无法编译:

string Maomao = "100";

int i = (int)Maomao;

因为string无法隐式转换为int。 如果必须要做就这样写:


string Maomao = "100";

int i = Convert.ToInt32(Maomao); 

关于C#中Convert.ToInt32()是干什么用的

上一篇:AcWing:239. 奇偶游戏(前缀和 + 离散化 + 带权并查集 + 异或性质)


下一篇:docker在windows下上传文件到容器