我希望能够从此 中的所有方法引用 类的 Reaction 对象> 类。我在第一个事件侦听器方法中声明了 对象。然而,第二个事件侦听器无法访问该类的实例,我不知道如何修复它。EquationClassCalculatorPageReaction
我尝试将第一种方法更改为public,但错误仍然存在。
private void ExampleListenerMethodOne(object sender, RoutedEventArgs e)
{
var Reaction = new EquationClass("Example");
Reaction.species = Reaction.MakeAndReturnSpeciesArray();
}
public void ExampleListenerMethodTwo(object sender, RoutedEventArgs e)
{
Console.WriteLine(Reaction.species); //Here is the 'Does not exist
//in current context error'
}
我希望能够从任何地方访问该对象,但我不能。 我从 Visual Studio 收到 “当前上下文中不存在错误”。我已阅读其他相关问题,但找不到解决方案。
绝地无双
相关分类