111,125
社区成员
发帖
与我相关
我的任务
分享
class Program
{
private static string str = "";
static void Main(string[] args)
{
b();
a();
Console.ReadLine();
}
static void a()
{
Console.WriteLine(str);
}
static void b()
{
str = "对全局变量赋值!";
}
}