zoukankan      html  css  js  c++  java
  • C# 5.0图书

    C# 5.0 in a Nutshell The Definitive Reference

    WinRT

    C# 5.0 also interoperates with Windows Runtime (WinRT) libraries. WinRT is an execution interface and runtime environment for accessing libraries in a language-neutral and object-oriented fashion. It ships with Windows 8 and is (in part) an enhanced version of Microsoft’s Component Object Model or COM (see Chapter 25)

    What’s New in C# 5.0

    C# 5.0’s big new feature is support for asynchronous functions via two new keywords, async and await. Asynchronous functions enable asynchronous continuations, which make it easier to write responsive and thread-safe rich-client applications. They also make it easy to write highly concurrent and efficient I/O-bound applications that don’t tie up a thread resource per operation.

    What’s New in C# 4.0

    The features new to C# 4.0 were:

    • Dynamic binding

    • Optional parameters and named arguments

    • Type variance with generic interfaces and delegates

    • COM interoperability improvements

    What’s New in C# 3.0

    The features added to C# 3.0 were mostly centered on Language Integrated Query

    capabilities or LINQ for short.

    The C# 3.0 features added to support LINQ comprised implicitly typed local variables,

    anonymous types, object initializers, lambda expressions, extension methods, query

    expressions and expression trees.

    C# 3.0 also added automatic properties and partial methods.

    看完这本书,对C#的最新情况会有深入的了解,同时也复习了以前的知识 

    图书的覆盖内容

    clip_image002

    网址

    http://shop.oreilly.com/product/0636920023951.do

    http://www.amazon.com/5-0-Nutshell-The-Definitive-Reference/dp/1449320104

    O’Reilly 图书品质的保证,学习其他的资料时看了很多的O’Reilly 系列图书

    http://product.china-pub.com/195367  C# 3.0核心技术(第三版) 这个是早期的版本,有中文版
  • 相关阅读:
    redis数据持久化
    redis安全:给redis设置密码
    redis命令总结
    redis事务
    redis发布订阅
    Java中的日期
    链式队列
    删除链表中的结点(链表)、比较含退格的字符串(栈)、棒球比赛(栈)
    物理层
    链式栈
  • 原文地址:https://www.cnblogs.com/2018/p/2581813.html
Copyright © 2011-2022 走看看