那得先实例化class1,不要引用命名空间,把所有东西都写到一个命名空间内就行。然后再调用这个output方法实例化public class1 t=new class1(); t.output(j);
Output是类?那Class1是什么呢? L1_2又是神马?
你是想打印出选择的值吧?
class Output
{
public static void OutpputChoice(string i)
{
switch(i)
{
case "1":
Console.Write("拼音");
break;
case: "2":
Console.Write("汉字");
break;
}
static void Main(string[] args)
{
Console.Write("请选择输出:1. 拼音 2. 汉字");
string j=Console .ReadLine();
OutpputChoice(j);
}
}
类是否用static修饰 要是没有的话就要先实列化
把你写的代码贴全了,然后报的错误是什么?
没看懂