字段和局部变量的作用域冲突
时间:2010-10-19 来源:yaofang463
using System;
namespace Wrox.ProCSharp.Basics
{
class ScopeTest2
{
static int j = 20;
public static void Main()
{
int j = 30;
Console.WriteLine(j);
Console.WriteLine(ScopeTest2.j);
Console.ReadLine();
return;
}
}
}
返回值30
20
相关阅读 更多 +