{
public static int test = 0;
Test()
{
test++;
}
Test(int i):this()
{
test += i;
}
//test code here:
Console.WriteLine(Test.test);
//第二个代码
public class Test
{
public static int test = 0;
static Test()
{
test++;
}
private Test(int i)
{
test += i;
}
//test code here:
Console.WriteLine(Test.test);
//比较清晰的了解了essential.net中讲到的initializar和constructor。
2004年4月15日 13:41