哪出错了,帮忙看看,说是使用了未赋值的局部变量w
namespace ConsoleStudent{
public class Student
{
public Student()
{
}
}
class Program
{
public static void Create(Student s)
{
}
public static void Delete(Student n)
{
}
public static void Update(student m)
{
}
public static void Retrieve(student k)
{
}
static void Main(string[] args)
{
Student w;
char a;
bool flag=true;
while(flag)
{
Console.WriteLine("增加请输入c,删除请输入d,修改请输入u,查找请输入r,退出请按其他键");
a=char.Parse(Console.ReadLine());
switch (a)
{
case 'c':
Create(w); break;
case 'd':
Delete(w); break;
case 'u':
Update(w); break;
case 'r':
Retrieve(w); break;
default:
Console.WriteLine("感谢您的使用!"); flag = false; break;
}
}
}
}
}