由于手上的项目主要是后期维护,闲来无事,找些C#面试题,以检验自己的知识结构!
发现一个问题: 自己的代码能力需要提高!
我琢磨,没有IDE(我可能无法完成一个简单的Hello, world 程序!)
汗.~~~
using System;
using System.Windows.Form
public class A:Form
{
public A(){
Lable lbInfo = new Lable();
lbInfo.Text = "Hello, World";
this.Controls.Add(lb);
};
}
public class Program
{
[Static]
void Main()
{
..............忘了
}
}