Home > Store

C# 5.0 Unleashed

Register your product to gain access to bonus material or receive a coupon.

C# 5.0 Unleashed

eBook (Watermarked)

  • Sorry, this book is no longer in print.
  • Includes EPUB and PDF
  • About eBook Formats
  • This eBook includes the following formats, accessible from your Account page after purchase:

    ePub EPUB The open industry format known for its reflowable content and usability on supported mobile devices.

    Adobe Reader PDF The popular standard, used most often with the free Acrobat® Reader® software.

    This eBook requires no passwords or activation to read. We customize your eBook by discreetly watermarking it with your name, making it uniquely yours.

Not for Sale

Description

  • Copyright 2013
  • Dimensions: 7" x 9-1/8"
  • Edition: 1st
  • eBook (Watermarked)
  • ISBN-10: 0-13-339149-3
  • ISBN-13: 978-0-13-339149-7

Buy the print C# 5.0 Unleashed and get the eBook version for free! See inside the book for access code and details.

C# 5.0 Unleashed is for anyone who wants to learn the C# programming language in depth, understanding how language features truly work. While giving you those insights, you learn where and how to use the features to design various kinds of software. This book not only teaches the language’s capabilities, it also looks behind the scenes to build a solid foundation to aid you in understanding the .NET platform as a whole.

Bart De Smet offers exceptional insight into the features of both the language and Microsoft’s broader framework. He doesn’t just cover the “what” and “how” of effective C# programming: He explains the “why,” so you can consistently choose the right language and platform features, maximizing your efficiency and effectiveness.

The early chapters introduce the .NET platform, the tooling ecosystem, and the C# programming language, followed by in-depth coverage of the C# programming language itself, with immediate application of language features. The last chapters give an overview of the .NET Framework libraries about which every good developer on the platform should know.

  • Understand the .NET platform: its language support, libraries, tools, and more
  • Learn where C# fits, how it has evolved, and where it’s headed
  • Master essential language features including expressions, operators, types, objects, and methods
  • Efficiently manage exceptions and resources
  • Write more effective C# object-oriented code
  • Make the most of generics, collections, delegates, reflection, and other advanced language features
  • Use LINQ to express queries for any form of data
  • Master dynamic programming techniques built on .NET’s Dynamic Language Runtime (DLR)
  • Work with namespaces, assemblies, and application domains
  • Write more efficient code using threading, synchronization, and advanced parallel programming techniques
  • Leverage the Base Class Library (BCL) to quickly perform many common tasks
  • Instrument, diagnose, test, and troubleshoot your C# code
  • Understand how to use the new C# 5.0 asynchronous programming features
  • Leverage interoperability with Windows Runtime to build Windows 8 applications

Sample Content

Table of Contents

Introduction    1

Who Should Read This Book?    2

What You Need to Know Before You Read This Book    2

How This Book Is Organized    3

1 Introducing the    NET Platform    5

A Historical Perspective    5

A 10,000-Feet View of the    NET Platform.    9

The Common Language Infrastructure    12

The Multilanguage Aspect of    NET    15

Introducing    NET Assemblies.    16

The Common Type System Explained    17

Executing Managed Code    24

Diving into the Common Language Runtime    32

The Base Class Library    51

Summary    54

2 Introducing the C# Programming Language    55

The Evolution of C#    55

A Sneak Peek at the Future    95

Summary    102

3 Getting Started with    NET Development Using C#    103

Installing the    NET Framework    103

Your First Application: Take One    113

Visual Studio 2012    119

Your First Application: Take Two    127

Summary    173

4 Language Essentials    175

The Entry Point    175

Keywords    181

A Primer on Types    184

Built-In Types    190

Local Variables.    212

Intermezzo on Comments    223

Arrays    230

The Null Reference    239

Nullable Value Types    243

Summary    249

5 Expressions and Operators    251

What Are Expressions?    251

The Evaluation Stack    255

Arithmetic Operators    258

String Concatenation    269

Shift Operators    274

Relational Operators    275

Logical Operators    277

Conditional Operators    281

An Operator’s Result Type    284

Null-Coalescing Operator    285

Assignment    287

Summary    299

6 A Primer on Types and Objects    301

Implicit Versus Explicit Conversions    301

The typeof Operator: A Sneak Peek at Reflection    319

Default Value Expression    322

Creating Objects with the new Operator    324

Member Access    336

Invocation Expressions    340

Element Access    348

Summary    349

7 Simple Control Flow    351

What Are Statements, Anyway?    351

Expression Statements    353

The Empty Statement    355

Statement Blocks.    356

Declarations    357

Selection Statements    358

Iteration Statements    375

A Peek at Iterators    391

Loops in the Age of Concurrency    398

The goto Statement    400

The return Statement    404

Summary    406

8 Basics of Exceptions and Resource Management    407

Exception Handling    407

Deterministic Resource Cleanup    438

Locking on Objects    448

Summary    462

9 Introducing Types    463

Types Revisited    463

Classes Versus Structs    466

Type Members    486

Summary    499

10 Methods    501

Defining Methods    501

Specifying the Return Type    502

Declaring Parameters    504

Overloading    519

Extension Methods    524

Partial Methods    534

Extern Methods    538

Refactoring    540

Code Analysis    545

Summary    546

11 Fields, Properties, and Indexers    547

Fields    547

An Intermezzo About Enums    563

Properties    574

Indexers    580

Summary    583

12 Constructors and Finalizers    585

Constructors    585

Static Constructors    592

Destructors (Poorly Named Finalizers)    595

Summary    608

13 Operator Overloading and Conversions    609

Operators    609

Conversions    633

Summary    647

14 Object-Oriented Programming    649

The Cornerstones of Object Orientation    649

Inheritance for Classes    663

Protected Accessibility    674

Polymorphism and Virtual Members    676

Abstract Classes    688

Interface Types    690

Summary    699

15 Generic Types and Methods    701

Life Without Generics    701

Getting Started with Generics    704

Declaring Generic Types    707

Using Generic Types    712

Performance Intermezzo    714

Operations on Type Parameters    718

Generic Constraints    720

Generic Methods    736

Co- and Contravariance    743

Summary    754

16 Collection Types    755

Nongeneric Collection Types    755

Generic Collection Types    765

Thread-Safe Collection Types    778

Other Collection Types    786

Summary    787

17 Delegates    789

Functional Programming    789

What Are Delegates?    794

Delegate Types    794

Delegate Instances    798

Invoking Delegates    811

Putting It Together: An Extensible Calculator    815

Case Study: Delegates Used in LINQ to Objects    819

Asynchronous Invocation    823

Combining Delegates    835

Summary    842

18 Events    843

The Two Sides of Delegates    844

A Reactive Application    845

How Events Work    853

Raising Events, the Correct Way    855

add and remove Accessors    857

Detach Your Event Handlers    861

Recommended Event Patterns    871

Case Study: INotifyProperty Interfaces and UI Programming    880

Countdown, the GUI Way    890

Event Interoperability with WinRT    896

Introduction to Reactive Programming    898

Summary    911

19 Language Integrated Query Essentials    913

Life Without LINQ    914

LINQ by Example    921

Query Expression Syntax    931

Summary    975

20 Language Integrated Query Internals    977

How LINQ to Objects Works    977

Standard Query Operators    1000

The Query Pattern    1033

Parallel LINQ    1036

Expression Trees    1045

Summary    1055

21 Reflection    1057

Typing Revisited, Static and Otherwise.    1058

Reflection    1063

Lightweight Code Generation    1091

Expression Trees    1101

Summary    1117

22 Dynamic Programming    1119

The dynamic Keyword in C# 4.0    1119

DLR Internals    1137

Office and COM Interop    1159

Summary    1174

23 Exceptions    1175

Life Without Exceptions    1175

Introducing Exceptions    1178

Exception Handling    1180

Throwing Exceptions    1196

Defining Your Own Exception Types    1198

(In)famous Exception Types    1201

Summary    1220

24 Namespaces    1221

Organizing Types in Namespaces    1221

Declaring Namespaces    1227

Importing Namespaces    1231

Summary    1240

25 Assemblies and Application Domains    1241

Assemblies    1241

Application Domains    1286

Summary    1298

26 Base Class Library Essentials    1301

The BCL: What, Where, and How?    1303

The Holy System Root Namespace    1311

Facilities to Work with Text    1356

Summary    1372

27 Diagnostics and Instrumentation    1373

Ensuring Code Quality    1374

Instrumentation    1388

Controlling Processes    1396

Summary    1398

28 Working with I/O    1399

Files and Directories    1399

Monitoring File System Activity    1407

Readers and Writers    1409

Streams: The Bread and Butter of I/O    1415

A Primer to (Named) Pipes    1434

Memory-Mapped Files in a Nutshell    1437

Overview of Other I/O Capabilities    1440

Summary    1440

29 Threading and Synchronization    1443

Using Threads    1444

Thread Pools    1474

Synchronization Primitives    1482

Summary    1511

30 Task Parallelism and Data Parallelism    1513

Pros and Cons of Threads    1514

The Task Parallel Library    1515

Task Parallelism    1520

Data Parallelism    1542

Summary    1550

31 Asynchronous Programming    1551

Why Asynchronous Programming Matters    1551

Old Asynchronous Programming Patterns    1564

Asynchronous Methods and await Expressions    1584

Behind the Scenes    1610

Advanced Topics    1634

Summary    1641

32 Introduction to Windows Runtime    1643

What Is Windows Runtime?    1643

Creating a Windows Runtime Component    1658

Overview of the Windows Runtime APIs    1667

Summary    1669

Index    1671

Updates

Submit Errata

More Information

InformIT Promotional Mailings & Special Offers

I would like to receive exclusive offers and hear about products from InformIT and its family of brands. I can unsubscribe at any time.

Overview


Pearson Education, Inc., 221 River Street, Hoboken, New Jersey 07030, (Pearson) presents this site to provide information about products and services that can be purchased through this site.

This privacy notice provides an overview of our commitment to privacy and describes how we collect, protect, use and share personal information collected through this site. Please note that other Pearson websites and online products and services have their own separate privacy policies.

Collection and Use of Information


To conduct business and deliver products and services, Pearson collects and uses personal information in several ways in connection with this site, including:

Questions and Inquiries

For inquiries and questions, we collect the inquiry or question, together with name, contact details (email address, phone number and mailing address) and any other additional information voluntarily submitted to us through a Contact Us form or an email. We use this information to address the inquiry and respond to the question.

Online Store

For orders and purchases placed through our online store on this site, we collect order details, name, institution name and address (if applicable), email address, phone number, shipping and billing addresses, credit/debit card information, shipping options and any instructions. We use this information to complete transactions, fulfill orders, communicate with individuals placing orders or visiting the online store, and for related purposes.

Surveys

Pearson may offer opportunities to provide feedback or participate in surveys, including surveys evaluating Pearson products, services or sites. Participation is voluntary. Pearson collects information requested in the survey questions and uses the information to evaluate, support, maintain and improve products, services or sites, develop new products and services, conduct educational research and for other purposes specified in the survey.

Contests and Drawings

Occasionally, we may sponsor a contest or drawing. Participation is optional. Pearson collects name, contact information and other information specified on the entry form for the contest or drawing to conduct the contest or drawing. Pearson may collect additional personal information from the winners of a contest or drawing in order to award the prize and for tax reporting purposes, as required by law.

Newsletters

If you have elected to receive email newsletters or promotional mailings and special offers but want to unsubscribe, simply email information@informit.com.

Service Announcements

On rare occasions it is necessary to send out a strictly service related announcement. For instance, if our service is temporarily suspended for maintenance we might send users an email. Generally, users may not opt-out of these communications, though they can deactivate their account information. However, these communications are not promotional in nature.

Customer Service

We communicate with users on a regular basis to provide requested services and in regard to issues relating to their account we reply via email or phone in accordance with the users' wishes when a user submits their information through our Contact Us form.

Other Collection and Use of Information


Application and System Logs

Pearson automatically collects log data to help ensure the delivery, availability and security of this site. Log data may include technical information about how a user or visitor connected to this site, such as browser type, type of computer/device, operating system, internet service provider and IP address. We use this information for support purposes and to monitor the health of the site, identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents and appropriately scale computing resources.

Web Analytics

Pearson may use third party web trend analytical services, including Google Analytics, to collect visitor information, such as IP addresses, browser types, referring pages, pages visited and time spent on a particular site. While these analytical services collect and report information on an anonymous basis, they may use cookies to gather web trend information. The information gathered may enable Pearson (but not the third party web trend services) to link information with application and system log data. Pearson uses this information for system administration and to identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents, appropriately scale computing resources and otherwise support and deliver this site and its services.

Cookies and Related Technologies

This site uses cookies and similar technologies to personalize content, measure traffic patterns, control security, track use and access of information on this site, and provide interest-based messages and advertising. Users can manage and block the use of cookies through their browser. Disabling or blocking certain cookies may limit the functionality of this site.

Do Not Track

This site currently does not respond to Do Not Track signals.

Security


Pearson uses appropriate physical, administrative and technical security measures to protect personal information from unauthorized access, use and disclosure.

Children


This site is not directed to children under the age of 13.

Marketing


Pearson may send or direct marketing communications to users, provided that

  • Pearson will not use personal information collected or processed as a K-12 school service provider for the purpose of directed or targeted advertising.
  • Such marketing is consistent with applicable law and Pearson's legal obligations.
  • Pearson will not knowingly direct or send marketing communications to an individual who has expressed a preference not to receive marketing.
  • Where required by applicable law, express or implied consent to marketing exists and has not been withdrawn.

Pearson may provide personal information to a third party service provider on a restricted basis to provide marketing solely on behalf of Pearson or an affiliate or customer for whom Pearson is a service provider. Marketing preferences may be changed at any time.

Correcting/Updating Personal Information


If a user's personally identifiable information changes (such as your postal address or email address), we provide a way to correct or update that user's personal data provided to us. This can be done on the Account page. If a user no longer desires our service and desires to delete his or her account, please contact us at customer-service@informit.com and we will process the deletion of a user's account.

Choice/Opt-out


Users can always make an informed choice as to whether they should proceed with certain services offered by InformIT. If you choose to remove yourself from our mailing list(s) simply visit the following page and uncheck any communication you no longer want to receive: www.informit.com/u.aspx.

Sale of Personal Information


Pearson does not rent or sell personal information in exchange for any payment of money.

While Pearson does not sell personal information, as defined in Nevada law, Nevada residents may email a request for no sale of their personal information to NevadaDesignatedRequest@pearson.com.

Supplemental Privacy Statement for California Residents


California residents should read our Supplemental privacy statement for California residents in conjunction with this Privacy Notice. The Supplemental privacy statement for California residents explains Pearson's commitment to comply with California law and applies to personal information of California residents collected in connection with this site and the Services.

Sharing and Disclosure


Pearson may disclose personal information, as follows:

  • As required by law.
  • With the consent of the individual (or their parent, if the individual is a minor)
  • In response to a subpoena, court order or legal process, to the extent permitted or required by law
  • To protect the security and safety of individuals, data, assets and systems, consistent with applicable law
  • In connection the sale, joint venture or other transfer of some or all of its company or assets, subject to the provisions of this Privacy Notice
  • To investigate or address actual or suspected fraud or other illegal activities
  • To exercise its legal rights, including enforcement of the Terms of Use for this site or another contract
  • To affiliated Pearson companies and other companies and organizations who perform work for Pearson and are obligated to protect the privacy of personal information consistent with this Privacy Notice
  • To a school, organization, company or government agency, where Pearson collects or processes the personal information in a school setting or on behalf of such organization, company or government agency.

Links


This web site contains links to other sites. Please be aware that we are not responsible for the privacy practices of such other sites. We encourage our users to be aware when they leave our site and to read the privacy statements of each and every web site that collects Personal Information. This privacy statement applies solely to information collected by this web site.

Requests and Contact


Please contact us about this Privacy Notice or if you have any requests or questions relating to the privacy of your personal information.

Changes to this Privacy Notice


We may revise this Privacy Notice through an updated posting. We will identify the effective date of the revision in the posting. Often, updates are made to provide greater clarity or to comply with changes in regulatory requirements. If the updates involve material changes to the collection, protection, use or disclosure of Personal Information, Pearson will provide notice of the change through a conspicuous notice on this site or other appropriate way. Continued use of the site after the effective date of a posted revision evidences acceptance. Please contact us if you have questions or concerns about the Privacy Notice or any objection to any revisions.

Last Update: November 17, 2020