本帖最后由 y494890511 于 2013-11-12 08:47 编辑
错误 1“索引器.Person.this[int].get”: 并非所有的代码路径都返回值 D:\C#学习\面向对象\索引器\Program.cs25 13 索引器
public string this[int index]
{
get
{
if (index==1)
{
return FirstName;
}
else if(index==2)
{
return SecondName;
}
}
set
{
if (index == 1)
{
FirstName = value;
}
else if(index==2)
{
SecondName = value;
}
else
{
throw new Exception("错误的序号");
}
}
} |