为一次面视(如果懂C#就有机会),不得不自学C#,过去一直学的是Java,现在不知道从何处入门学C#,请各位前辈指路!
using System;
namespace second
{
/// <summary>
/// Class1 的摘要说明。
/// </summary>
public class example1
{
public int x;
public static int y;
public void mywriteme()
{
System.Console.WriteLine("工作数据:x={0},y={1}",x,y);
}
static example1()
{
y=9;
System.Console.WriteLine("静态:x={0},y={1}",x,y);
}
public example1()
{
x++;
y++;
System.Console.WriteLine("实例中x={0},y={1}",x,y);
}
}
class Class1
{
/// <summary>
/// 应用程序的主入口点。
/// </summary>
[STAThread]
static void Main(string[] args)
{
int[] data={1,2,3,4,6,7,8,9};
foreach(int t in data)
{
System.Console.WriteLine("value:={0}",t);
}
System.Console.WriteLine("1");
example1 e1=new example1();
System.Console.WriteLine("2");
example1 e2=new example1();
// TODO: 在此处添加代码以启动应用程序
//
}
}
}
想测试一下C#的静态构造函数,结果出现错误,跟着书上抄的。不知道错在哪?请各位指教