我将尽力解释这一点。我正在开发一个需要从另一个程序获取数据的应用程序。我相信它们都在同一个解决方案中,我的应用程序引用了包含我想要的变量的 .dll。代码有点像这样设置
具有我想要的变量的 .cs 文件是这样设置的
public class myObserverClass
{
//then there is a bunch of functions and the variable i need is in one like this
static void functionWithMyVariable(ref something, int toTier){
string myVariable = some value;
}
}
在我的主应用程序中,我需要 myVariable 但我不确定如何访问它。我使用第二个程序的命名空间。