无法将类型“int”隐式转换为“string”

usingSystem;usingSystem.Collections.Generic;usingSystem.Linq;usingSystem.Text;namespa... using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace lian
{
class Xingtong
{
public struct Information
{
public string name, home, subject;
public int ID, phone;

public void Sign()
{
Console.Write("姓名:{0}", name);
Console.Write("学号:{1}",ID);
Console.Write("电话:{2}",phone);
Console.Write("住址:{3}",home);
Console.Write("报考科目:{4}",subject);
}

class Enter
{
int x = 0;
Information[] Info = new Information [10];

public void Add()
{
Console.WriteLine("姓名:");
Info[x].name=int.Parse(Console.ReadLine());
}
}

}
}
}
展开
 我来答
正怒月神
2014-08-11 · TA获得超过1157个赞
知道小有建树答主
回答量:710
采纳率:100%
帮助的人:502万
展开全部
Info[x].name=int.Parse(Console.ReadLine());
这句话,我看意思是,你把输入的数据转换成一个string?

1:要么你把Information 的name属性设置成int类型
2:要么你Info[x].name=Console.ReadLine();
更多追问追答
追问
其实我就是想做个简单程序,记录输入信息再把它输出来 。
追答
那你把Info[x].name=int.Parse(Console.ReadLine());
改成 Info[x].name=Console.ReadLine();
然后在Console.Write(Info[x].name);
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式