vs2005 c# 如何使用lambda表达式??
static void Main(string[] args) { del myDelegate = x => x * x;//这里编译会提示>是无效的表达式项哇 int j = myDelegate(5); //j = 25 Console.WriteLine(j.ToString()); Console.ReadKey(); } delegate int del(int i);