C# in Depth has become widely regarded as one of the best books in its field, focusing on C# as a language to provide an unparalleled level of detail. It explains not just what the language does, but also why it was designed that way. C# in Depth, Third Edition has been updated and expanded to cover the new features in C# 5, such as async modifier and async await operator which provide greater support for asynchronous operations and improve the ability to write asynchronous code which is readable, robust, and maintainable. It expertly guides the reader through the details and gives a new level of clarity about how the language works and how to use it most effectively. *Explains the what and why of C# * Covers new features of C# 5 * Shows how to avoid hidden pitfalls This book is aimed at intermediate to advanced developers who already know C# to some extent - but are possibly very rusty. C#, which is used to write asynchronous code, is a language primarily developed by Microsoft, targeting the .NET platform and is widely used in the corporate world. .NET 4.5 , released August 2012, supports C# 5 which is the next version of the language and contains features that make it much easier to write apps for Windows 8, which relies heavily on asynchrony.
......(更多)
Jon Skeet is a Senior Software Engineer at Google, and a highly visible participant of newsgroups, user groups, international conferences, and the Stack Overflow Q&A site. Jon spends much of his day coding in Java, but his heart belongs to C#.
The page for this book: or
Author's blog:
......(更多)
•Part one ◦1: The changing face of C# development
◦2: Core foundations: building on C# 1
•Part two ◦3: Parameterized typing with generics
◦4: Saying nothing with nullable types
◦5: Fast-tracked delegates
◦6: Implementing iterators the easy way
◦7: Concluding C# 2: the final features
•Part three ◦8: Cutting fluff with a smart compiler
◦9: Lambda expressions and expression trees
◦10: Extension methods
◦11: Query expressions and LINQ to Objects
◦12: LINQ beyond collections
•Part four ◦13: Minor changes to simplify code
◦14: Dynamic binding in a static language
•Part five ◦15: Asynchrony with async/await
◦16: C# 5 bonus features and closing thoughts
•Appendices ◦A: LINQ standard query operators
◦B: Generic collections in .NET
◦C: Version summaries
......(更多)
当有多个类型参数时,可以用一个适合整个类型含意的单词来分隔它们,例如,我会使用dictionary of string to int来强调映射的部分,而不会使用tuple of string and int。
......(更多)