visual studio 2019中新建winform程序,我在Program.cs中定义
static public class sharedData
{
static public string textValue = "a";
}
然后新建Form1,然后
private void Form1_Load(object sender, EventArgs e)
{
sharedData.textValue = "b";
}
编译时提示
CS0103当前上下文中不存在名称“sharedData”。
请大家指导一下原因,谢谢