Mark Michaelis 微软MVP,微软技术代言人,是intelliTechture公司的创始人和总裁,。他在C#开发方面有着很深的造诣,曾参与过C#和VSTS/TFS等多种微软软件产品的设计评审。本书是他的代表作。
AI导读
核心看点
系统讲解C#数据类型、运算符及类基础
深入探讨泛型、反射、线程等高级主题
详解LINQ技术及Lambda表达式应用
读者共识
广受好评的入门读物与语法手册
内容中规中矩,部分读者嫌不够深
适合通读以夯实C#语言基础
精彩摘录
"...C# achieves the same functionality using a delegate,which encapsulates methods as objects...."
"Events enable a class or object to notify other classes or objects when something of interest occurs. The class that sends (or raises) the event is called the publisher and the classes that receive (or handle) the event are called subscribers. In a typical C# Windows Forms or Web application, you su"
"Events have the following properties: The publisher determines when an event is raised; the subscribers determine what action is taken in response to the event. An event can have multiple subscribers. A subscriber can handle multiple events from multiple publishers. Events that have no subscribers a"