我正在使用以下代码制作 C# 桌面应用程序:
static class ClassA
{
public static string Process()
{
string temp = Functions.Test();
return temp;
}
}
static class Functions
{
public static string Test()
{
return "ok";
}
}
问题是变量“temp”没有从 Test() 函数中获得任何值。当我尝试在即时窗口中检查其值时,我收到消息“当前上下文中不存在名称‘temp’”
ClassA 和 Functions 都在不同的类文件中,但属于同一个命名空间。