本帖最后由 细水长流 于 2014-7-27 16:20 编辑
这个方法
public void Talk(string input)
{
if (FoodLevel < 0)
{
Console.WriteLine("饿死了,不说了");
return;
}
if (input.Contains("名字"))
{
this.SayHello();
}
else if (input.Contains("对象"))
{
Console.WriteLine("年龄小,不考虑");
}
else
{
Console.WriteLine("听不懂");
}
怎么获取输出的值 |