
c#
22233232
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
C#interface
An interface introduces the name of a method. A virtual method is the first implementation of a method. An override method is another implementation of a method. A sealed method is the last implemen原创 2015-11-28 14:05:35 · 396 阅读 · 0 评论 -
The forms of lambda expressions
x=>x*x;//A simple expression that returns the square of its parameter. The type of parameter x is inferred from the context. x=>{return x*x;};// Semantically the same as the preceding. expression, but原创 2016-07-03 15:42:30 · 330 阅读 · 0 评论