c# in depth, 3d edition

614 1.3K 2
c# in depth, 3d edition

Đang tải... (xem toàn văn)

Tài liệu hạn chế xem trước, để xem đầy đủ mời bạn chọn Tải xuống

Thông tin tài liệu

MANNING IN DEPTH Jon Skeet FOREWORD BY ERIC LIPPERT THIRD EDITION www.it-ebooks.info Praise for the Second Edition A masterpiece about C#. —Kirill Osenkov, Microsoft C# Team If you are looking to master C# then this book is a must-read. —Tyson S. Maxwell Sr. Software Engineer, Raytheon We're betting that this will be the best C# 4.0 book out there. —Nikander Bruggeman and Margriet Bruggeman .NET consultants, Lois & Clark IT Services A useful and engaging insight into the evolution of C# 4. —Joe Albahari Author of LINQPad and C# 4.0 in a Nutshell One of the best C# books I have ever read. —Aleksey Nudelman CEO, C# Computing, LLC This book should be required reading for all professional C# developers. —Stuart Caborn Senior Developer, BNP Paribas A highly focused, master-level resource on language updates across all major C# releases. This book is a must-have for the expert developer wanting to stay current with new features of the C# language. —Sean Reilly, Programmer/Analyst Point2 Technologies Why read the basics over and over again? Jon focuses on the chewy, new stuff! —Keith Hill, Software Architect Agilent Technologies Everything you didn’t realize you needed to know about C#. —Jared Parsons Senior Software Development Engineer Microsoft www.it-ebooks.info Praise for the First Edition Simply put, C# in Depth is perhaps the best computer book I’ve read. —Craig Pelkie, Author, System iNetwork I have been developing in C# from the very beginning and this book had some nice sur- prises even for me. I was especially impressed with the excellent coverage of delegates, anonymous methods, covariance and contravariance. Even if you are a seasoned devel- oper, C# in Depth will teach you something new about the C# language This book truly has depth that no other C# language book can touch. —Adam J. Wolf Southeast Valley .NET User Group I enjoyed reading the whole book; it is well-written—the samples are easy to understand. I actually found it very easy to engage into the whole lambda expressions topic and really liked the chapter about lambda expressions. —Jose Rolando Guay Paz Web Developer, CSW Solutions This book wraps up the author’s great knowledge of the inner workings of C# and hands it over to readers in a well-written, concise, usable book. —Jim Holmes Author of Windows Developer Power Tools Every term is used appropriately and in the right context, every example is spot-on and contains the least amount of code that shows the full extent of the feature this is a rare treat. —Franck Jeannin, Amazon UK reviewer If you have developed using C# for several years now, and would like to know the inter- nals, this book is absolutely right for you. —Golo Roden Author, Speaker, and Trainer for .NET and related technologies The best C# book I’ve ever read. —Chris Mullins, C# MVP www.it-ebooks.info C# in Depth T HIRD E DITION JON SKEET MANNING S HELTER I SLAND www.it-ebooks.info For online information and ordering of this and other Manning books, please visit www.manning.com. The publisher offers discounts on this book when ordered in quantity. For more information, please contact Special Sales Department Manning Publications Co. 20 Baldwin Road PO Box 261 Shelter Island, NY 11964. ©2014 by Manning Publications Co. All rights reserved. No part of this publication may be reproduced, stored in a retrieval system, or transmitted, in any form or by means electronic, mechanical, photocopying, or otherwise, without prior written permission of the publisher. Many of the designations used by manufacturers and sellers to distinguish their products are claimed as trademarks. Where those designations appear in the book, and Manning Publications was aware of a trademark claim, the designations have been printed in initial caps or all caps. Recognizing the importance of preserving what has been written, it is Manning’s policy to have the books we publish printed on acid-free paper, and we exert our best efforts to that end. Recognizing also our responsibility to conserve the resources of our planet, Manning books are printed on paper that is at least 15 percent recycled and processed without the use of elemental chlorine. Manning Publications Co. Development editor Jeff Bleiel 20 Baldwin Road Copyeditor: Andy Carroll PO Box 261 Proofreader: Katie Tennant Shelter Island, NY 11964 Typesetter: Dottie Marsico Cover designer: Marija Tudor ISBN 9781617291340 Printed in the United States of America 1 2 3 4 5 6 7 8 9 10 – MAL – 18 17 16 15 14 13 www.it-ebooks.info To my boys, Tom, Robin, and William www.it-ebooks.info www.it-ebooks.info vii brief contents P ART 1 P REPARING FOR THE JOURNEY 1 1 ■ The changing face of C# development 3 2 ■ Core foundations: building on C# 1 29 P ART 2 C# 2: S OLVING THE ISSUES OF C# 1 57 3 ■ Parameterized typing with generics 59 4 ■ Saying nothing with nullable types 105 5 ■ Fast-tracked delegates 133 6 ■ Implementing iterators the easy way 159 7 ■ Concluding C# 2: the final features 182 P ART 3 C# 3: R EVOLUTIONIZING DATA ACCESS 205 8 ■ Cutting fluff with a smart compiler 207 9 ■ Lambda expressions and expression trees 232 10 ■ Extension methods 262 11 ■ Query expressions and LINQ to Objects 285 12 ■ LINQ beyond collections 328 www.it-ebooks.info BRIEF CONTENTS viii P ART 4 C# 4: P LAYING NICELY WITH OTHERS 369 13 ■ Minor changes to simplify code 371 14 ■ Dynamic binding in a static language 409 P ART 5 C# 5: A SYNCHRONY MADE SIMPLE 461 15 ■ Asynchrony with async/await 463 16 ■ C# 5 bonus features and closing thoughts 519 www.it-ebooks.info ix contents foreword xix preface xxi acknowledgments xxii about this book xxiv about the author xxix about the cover illustration xxx P ART 1 P REPARING FOR THE JOURNEY 1 1 The changing face of C# development 3 1.1 Starting with a simple data type 4 The Product type in C# 1 5 ■ Strongly typed collections in C# 2 6 Automatically implemented properties in C# 3 7 ■ Named arguments in C# 4 8 1.2 Sorting and filtering 9 Sorting products by name 9 ■ Querying collections 12 1.3 Handling an absence of data 14 Representing an unknown price 14 ■ Optional parameters and default values 16 1.4 Introducing LINQ 16 Query expressions and in-process queries 17 ■ Querying XML 18 ■ LINQ to SQL 19 www.it-ebooks.info [...]... Usage ideas and guidelines 280 “Extending the world” and making interfaces richer 280 Fluent interfaces 280 Using extension methods sensibly 282 ■ ■ 10.5 11 Summary 284 Query expressions and LINQ to Objects 285 11.1 Introducing LINQ 286 Fundamental concepts in LINQ model 291 11.2 286 ■ Defining the sample data Simple beginnings: selecting elements 292 Starting with a source and ending with a selection... www.it-ebooks.info xv CONTENTS 11.3 Filtering and ordering a sequence 300 Filtering using a where clause 300 Degenerate query expressions 301 Ordering using an orderby clause 302 ■ ■ 11.4 Let clauses and transparent identifiers 304 Introducing an intermediate computation with let Transparent identifiers 306 11.5 Joins 305 307 Inner joins using join clauses 307 Group joins with join into clauses 311 Cross joins... Compact Framework and Silverlight Terminology, typography, and downloads Most of the terminology of the book is explained as it goes along, but there are a few definitions that are worth highlighting here I use C# 1, C# 2, C# 3, C# 4, and C# 5 in a reasonably obvious manner—but you may see other books and websites referring to C# 1.0, C# 2.0, C# 3.0, C# 4.0, and C# 5.0 The extra “.0” seems redundant... query provider in action 342 Wrapping up IQueryable 344 ■ ■ ■ ■ 12.3 LINQ-friendly APIs and LINQ to XML 344 Core types in LINQ to XML 345 Declarative construction 347 Queries on single nodes 349 Flattened query operators 351 Working in harmony with LINQ 352 ■ ■ 12.4 Replacing LINQ to Objects with Parallel LINQ 353 Plotting the Mandelbrot set with a single thread 353 Introducing ParallelEnumerable, ParallelQuery,... 354 Tweaking parallel queries 356 ■ www.it-ebooks.info xvi CONTENTS 12.5 Inverting the query model with LINQ to Rx 357 IObservable and IObserver 358 Starting simply (again) 360 Querying observables 360 What’s the point? 363 ■ ■ 12.6 ■ Extending LINQ to Objects 364 Design and implementation guidelines selecting a random element 365 12.7 Summary 364 ■ Sample extension: 367 PART 4 C# 4: PLAYING NICELY... of C# programmers come up with Happy composing, and thanks for choosing the key of C# to do it in ERIC LIPPERT C# ANALYSIS ARCHITECT COVERITY www.it-ebooks.info preface Oh boy When writing this preface, I started off with the preface to the second edition, which began by saying how long it felt since writing the preface to the first edition The second edition is now a distant memory, and the first edition. .. features introduced in C# 2, the third part covers C# 3, and so on There are occasions when organizing the material this way means we'll come back to a topic a couple of times in particular, delegates are improved in C# 2 and then again in C# 3—but there is method in my madness I anticipate that a number of readers will be using different versions for different projects; for example, you may be using C#. .. 12.1 Querying a database with LINQ to SQL 329 Getting started: the database and model 330 queries 332 Queries involving joins 334 ■ Initial ■ 12.2 Translations using IQueryable and IQueryProvider 336 Introducing IQueryable and related interfaces 337 Faking it: interface implementations to log calls 338 Gluing expressions together: the Queryable extension methods 341 The fake query provider in action... manning.com/CSharpinDepthThirdEdition Author Online and the C# in Depth website Purchase of C# in Depth, Third Edition includes free access to a private web forum run by Manning Publications where you can make comments about the book, ask technical questions, and receive help from the author and other users To access the forum and subscribe to it, point your web browser to www.manning.com/CSharpinDepthThirdEdition... method discovery 268 Calling a method on a null reference 269 ■ ■ 10.3 ■ Extension methods in NET 3.5 271 First steps with Enumerable 271 Filtering with Where and chaining method calls together 273 Interlude: haven’t we seen the Where method before? 275 Projections using the Select method and anonymous types 276 Sorting using the OrderBy method 277 Business examples involving chaining 278 ■ ■ ■ ■ ■ 10.4 . expressions and LINQ to Objects 285 11.1 Introducing LINQ 286 Fundamental concepts in LINQ 286 ■ Defining the sample data model 291 11.2 Simple beginnings: selecting elements 292 Starting with a source. 304 Introducing an intermediate computation with let 305 Transparent identifiers 306 11.5 Joins 307 Inner joins using join clauses 307 ■ Group joins with join into clauses 311 ■ Cross joins. method 277 ■ Business examples involving chaining 278 10.4 Usage ideas and guidelines 280 “Extending the world” and making interfaces richer 280 ■ Fluent interfaces 280 ■ Using extension methods

Ngày đăng: 01/08/2014, 17:27

Từ khóa liên quan

Mục lục

  • C# in Depth

  • brief contents

  • contents

  • foreword

  • preface

  • acknowledgments

  • about this book

    • Who should read this book?

    • Roadmap

    • Terminology, typography, and downloads

    • Author Online and the C# in Depth website

    • about the author

    • about the cover illustration

    • Part 1 Preparing for the journey

      • 1 The changing face of C# development

        • 1.1 Starting with a simple data type

          • 1.1.1 The Product type in C# 1

          • 1.1.2 Strongly typed collections in C# 2

          • 1.1.3 Automatically implemented properties in C# 3

          • 1.1.4 Named arguments in C# 4

          • 1.2 Sorting and filtering

            • 1.2.1 Sorting products by name

            • 1.2.2 Querying collections

            • 1.3 Handling an absence of data

              • 1.3.1 Representing an unknown price

              • 1.3.2 Optional parameters and default values

Tài liệu cùng người dùng

Tài liệu liên quan