您好我收到此错误,是否必须添加一个特殊的命名空间? “无法找到类型或命名空间名称'call'......”
private void start_btn_Click(object sender, EventArgs e)
{
call DoIt();
}
void DoIt()
{
...code
}
答案 0 :(得分:6)
直接在没有DoIt
的情况下直接调用call
。在C#
call
这样的操作
DoIt();
答案 1 :(得分:3)
一个人不使用call
来调用C#中的函数,因此修复你的代码:
private void start_btn_Click(object sender, EventArgs e)
{
DoIt();
}
正如@Kheldar建议的那样,你可能会想到call statement in Visual Basic,这不是C#的一个特性。
答案 2 :(得分:2)
删除“call”,您的代码将会运行。
VB6或Windows Script编码器多吗? ;)
答案 3 :(得分:1)