Items related to C# 6 for Programmers (Deitel Developer)

C# 6 for Programmers (Deitel Developer) - Softcover

 
9780134596327: C# 6 for Programmers (Deitel Developer)

Synopsis

The professional programmer’s Deitel® guide to C# 6 and object-oriented development for Windows®

 

Written for programmers with a background in high-level language programming, C# 6 for Programmers applies the Deitel signature live-code approach to teaching programming and explores Microsoft’s C# 6 and .NET in depth. Concepts are presented in the context of 170+ fully coded and tested apps, complete with syntax shading, code highlighting, code walkthroughs, program outputs and hundreds of savvy software-development tips.


Start with an introduction to C# using an early classes and objects approach, then rapidly move on to more advanced topics, including LINQ, asynchronous programming with async and await and more. You’ll enjoy the treatment of object-oriented programming and an object-oriented design/UML® ATM case study, including a complete C# implementation. When you’ve mastered the book, you’ll be ready to start building industrial-strength, object-oriented C# apps.


Paul Deitel and Harvey Deitel are the founders of Deitel & Associates, Inc., the internationally recognized programming languages authoring and corporate training organization. Millions of people worldwide have used Deitel textbooks, professional books, LiveLessons™ video products, e-books, resource centers and REVEL™ interactive multimedia courses with integrated labs and assessment to master major programming languages and platforms, including C#, C++, C, Java™, Android™ app development, iOS app development, Swift™, Visual Basic®, Python™ and Internet and web programming.

 

Features:

  • Use with Windows® 7, 8 or 10.
  • Integrated coverage of new C# 6 functionality: string interpolation, expression-bodied methods and properties, auto-implemented property initializers, getter-only properties, nameof, null-conditional operator, exception filters and more.
  • Entertaining and challenging code examples.
  • Deep treatment of classes, objects, inheritance, polymorphism and interfaces.
  • Generics, LINQ and generic collections; PLINQ (Parallel LINQ) for multicore performance.
  • Asynchronous programming with async and await; functional programming with lambdas, delegates and immutability.
  • Files; relational database with LINQ to Entities.
  • Object-oriented design ATM case study with full code implementation.
  • Emphasis on performance and software engineering principles.

 

Visit www.deitel.com

  • Download code examples
  • For Deitel’s programming training courses, www.deitel.com/training or write to deitel@deitel.com
  • Join the Deitel social networking communities:
    • Facebook® at facebook.com/DeitelFan
    • Twitter® at twitter.com/deitel
    • LinkedIn® at bit.ly/DeitelLinkedIn
    • YouTube™ at youtube.com/DeitelTV
    • Google+™ at google.com/+DeitelFan
  • Subscribe to the Deitel® Buzz e-mail newsletter at www.deitel.com/newsletter/subscribe.html

"synopsis" may belong to another edition of this title.

Review

Comments from Recent Editions’ Reviewers

 

“Takes you from zero to the highest levels of C# programming proficiency, preparing you to tackle the most frequent requirements in modern software development. The code examples really shine. The best presentation of inheritance, interfaces and polymorphism I’ve seen in my 30+ years as a trainer and consultant. I like the early introduction to LINQ and .NET collections, and the coverage of LINQ to Entities for relational databases. Shows the techniques needed to develop real-world apps, including key topics, such as async and await.” —Octavio Hernandez, Microsoft Certified Solution Developer (MCSD), Principal Software Engineer at Advanced Bionics

 

“This book’s treatment of LINQ and PLINQ is excellent—I liked how it led naturally to functional programming idioms—skills that will serve professionals best for their future. Also, it was great to see performance testing on multicore systems.” —Lucian Wischik, C# Language Design Team, Microsoft

 

“The ultimate book on programming with Microsoft technologies.” —Kirill Osenkov, Visual Studio Languages Team, Microsoft

 

“Excellent introduction to the world of .NET for the beginning C# programmer, using the Deitels’ live-code approach and real-world examples.” —Bonnie Berent, Microsoft C# MVP

 

“Illustrates the best practices of C# programming. Teaches how to ‘program in the large,’ with material on object-oriented programming and software engineering principles.” —Mingsheng Hong, Cornell University

 

“I like the chapter on asynchronous programming with async and await—this is the future of programming, and making these types of tasks ‘easy’ to program is going to be key to any programming language. The introduction to multi-threading was interesting. It was good to see synchronous versus asynchronous programming head-to-head. The flickr web services demo was awesome.” —Bradley Sward, College of Dupage

 

“I really love the way you guys write—it’s interesting and informative!” —Shay Friedman, Microsoft Visual C# MVP

 

“Good introduction to the most popular GUI controls and working with events. I use the techniques of the strings chapter in the line of business apps that I build. I liked the files and streams chapter and the real-world example. I’m pleased to see the inclusion of additional advanced material online.” —Shawn Weisfeld, Microsoft MVP and President and Founder of UserGroup.tv

 

“Outstanding presentations of Windows Forms and the .NET I/O facilities. Amazingly clear and intuitive presentation of generics; this chapter represents why I like this book so much—it really shines at presenting advanced topics in a way that can be easily understood. The presentation of LINQ to XML is fabulous.” —Octavio Hernandez, Microsoft Certified Solution Developer (MCSD), Principal Software Engineer at Advanced Bionics

 

“The beginning of the chapter ‘Classes and Objects: A Deeper Look’ shows a class in an ‘amateur’ state—then you do a great job of describing how many ways one can improve it until it pretty much becomes air-tight in security and functionality. Operator overloading is a good description. Good example of extension methods.” —Bradley Sward, College of Dupage

 

“Updating an already excellent book with the latest .NET features can only result in a superb product. I like the explanation of properties and the discussion of value vs. reference types. I like your explanation of pass-by-value vs. pass-by-reference. The arrays chapter is one of my favorites. Great job explaining inheritance, polymorphism, interfaces and operator overloading.” —José Antonio González Seco, Parliament of Andalusia, Spain

 

“Great job explaining exception handling—with great examples; the new features look pretty sweet. Shows the important things you need to get going with GUI. Delegates are huge and covered well. Interesting description of C# 6’s exception filters.” —Bradley Sward, College of Dupage

 

“An excellent introduction to XML, LINQ to XML and related technologies.” —Helena Kotas, Microsoft

 

“Good overview of relational databases—it hits on the right LINQ idioms.” —Alex Turner, Microsoft

 

“Excellent chapter on exceptions.” —Vinay Ahuja, Architect, Microsoft Corporation

 

“Great chapter on polymorphism.” —Eric Lippert, Formerly of Microsoft

 

“Introduction to LINQ and the List Collection is a great chapter; you do such a good and consistent job of explaining your code. The focus on using LINQ to manage data is cutting edge.” —Stephen Hustedde, South Mountain College

 

“The presentations are always superbly clear. Excellent intro to Visual Studio and visual programming! I like the early presentation of the new C# 6 string interpolation feature. Introducing UML class diagrams in parallel with the presentation of the language is a great idea. I like the early introduction of exception handling. Brings readers up to speed fast in GUI design and implementation, and event-driven programming. Nice example demonstrating the method call stack and activation records. Database chapter perfectly explains LINQ to Entities and UI binding.” —Octavio Hernandez, Microsoft Certified Solution Developer (MCSD), Principal Software Engineer at Advanced Bionics

 

“Chapter 2 is perfect for introducing Visual Studio and GUI elements—I wish I had this chapter when I was first getting back into computers. Everything felt just right in the methods chapter. Recursion will warp anyone’s brain—the stack discussion really helps readers understand what is going on. I really like the deck of cards example, being a former casino gaming programmer. Multidimensional arrays are handled well. I like the attention to detail and the UML. Thank you for showing correct code-formatting conventions. Thorough display of all the ‘pass-by’ types. The card shuffling and dealing simulation is a great example for bringing together many concepts. Good use of overloaded functions for rectangular arrays and jagged arrays. The LINQ chapter is perfect—much more will be revealed in later chapters but readers will remember this. The collections are a nice addition as well—a chapter that is important to get a taste of now so the later material can be feasted upon. Describes inheritance perfectly.” —Bradley Sward, College of Dupage

 

“This new edition solidifies it as the fundamental tool for learning C# updated to the latest C# 6 features. It covers from the fundamentals of OOP to the most advanced topics, all in an easily accessible way thanks to its crystal-clear explanations. A good job explaining such a complex topic as asynchronous programming.” —José Antonio González Seco, Parliament of Andalusia, Spain

 

“I liked the natural use of C# 6 string interpolation. A good clear explanation of LINQ query syntax. GUI apps are where coding starts to become fun—you’ve handled it well and covered all the bases. The Game of Craps is an awesome example. I love that you’re paying attention to formats and using them well.” —Lucian Wischik, C# Language Design Team, Microsoft

 

“An excellent resource to tame the beast that is C#. In the Windows forms chapter, cool how the message box will be customized to the clicked buttons. I love the Paint example. A good look at files and directories—with text mode it’s easier to see what’s going on—binary mode is much more efficient so it’s good to see it here. You show error checking in GUI and files/streams well. File chooser functionality is a nice touch. Good example of serialization. The recursive directory searching is nice.” —Bradley Sward, College of Dupage

"About this title" may belong to another edition of this title.

  • PublisherPearson
  • Publication date2016
  • ISBN 10 0134596323
  • ISBN 13 9780134596327
  • BindingPaperback
  • LanguageEnglish
  • Edition number6
  • Number of pages768

Buy Used

Condition: Good
Ship within 24hrs. Satisfaction...
View this item

FREE shipping within U.S.A.

Destination, rates & speeds

Search results for C# 6 for Programmers (Deitel Developer)

Stock Image

Deitel, Paul; Deitel, Harvey
Published by Prentice Hall (edition 6), 2016
ISBN 10: 0134596323 ISBN 13: 9780134596327
Used Paperback

Seller: BooksRun, Philadelphia, PA, U.S.A.

Seller rating 5 out of 5 stars 5-star rating, Learn more about seller ratings

Paperback. Condition: Good. 6. Ship within 24hrs. Satisfaction 100% guaranteed. APO/FPO addresses supported. Seller Inventory # 0134596323-11-1

Contact seller

Buy Used

£ 26.02
Convert currency
Shipping: FREE
Within U.S.A.
Destination, rates & speeds

Quantity: 1 available

Add to basket

Stock Image

Deitel, Paul; Deitel, Harvey
Published by Pearson, 2016
ISBN 10: 0134596323 ISBN 13: 9780134596327
Used Paperback

Seller: ThriftBooks-Atlanta, AUSTELL, GA, U.S.A.

Seller rating 5 out of 5 stars 5-star rating, Learn more about seller ratings

Paperback. Condition: Good. No Jacket. Pages can have notes/highlighting. Spine may show signs of wear. ~ ThriftBooks: Read More, Spend Less 2.15. Seller Inventory # G0134596323I3N00

Contact seller

Buy Used

£ 27.53
Convert currency
Shipping: FREE
Within U.S.A.
Destination, rates & speeds

Quantity: 1 available

Add to basket

Seller Image

Deitel, Paul; Deitel, Harvey
Published by Prentice Hall, 2016
ISBN 10: 0134596323 ISBN 13: 9780134596327
Used Softcover

Seller: Blue Vase Books, Interlochen, MI, U.S.A.

Seller rating 5 out of 5 stars 5-star rating, Learn more about seller ratings

Condition: acceptable. The item is very worn but is perfectly usable. Signs of wear can include aesthetic issues such as scratches, dents, worn and creased covers, folded page corners and minor liquid stains. All pages and the cover are intact, but the dust cover may be missing. Pages may include moderate to heavy amount of notes and highlighting, but the text is not obscured or unreadable. Page edges may have foxing age related spots and browning . May NOT include discs, access code or other supplemental materials. Seller Inventory # BVV.0134596323.A

Contact seller

Buy Used

£ 27.58
Convert currency
Shipping: FREE
Within U.S.A.
Destination, rates & speeds

Quantity: 1 available

Add to basket

Seller Image

Deitel, Paul; Deitel, Harvey
Published by Prentice Hall, 2016
ISBN 10: 0134596323 ISBN 13: 9780134596327
Used Softcover

Seller: Bay State Book Company, North Smithfield, RI, U.S.A.

Seller rating 5 out of 5 stars 5-star rating, Learn more about seller ratings

Condition: good. The book is in good condition with all pages and cover intact, including the dust jacket if originally issued. The spine may show light wear. Pages may contain some notes or highlighting, and there might be a "From the library of" label. Boxed set packaging, shrink wrap, or included media like CDs may be missing. Seller Inventory # BSM.F2AH

Contact seller

Buy Used

£ 27.61
Convert currency
Shipping: FREE
Within U.S.A.
Destination, rates & speeds

Quantity: 1 available

Add to basket

Seller Image

Deitel, Paul; Deitel, Harvey
Published by Prentice Hall, 2016
ISBN 10: 0134596323 ISBN 13: 9780134596327
Used Softcover

Seller: Bay State Book Company, North Smithfield, RI, U.S.A.

Seller rating 5 out of 5 stars 5-star rating, Learn more about seller ratings

Condition: good. The book is in good condition with all pages and cover intact, including the dust jacket if originally issued. The spine may show light wear. Pages may contain some notes or highlighting, and there might be a "From the library of" label. Boxed set packaging, shrink wrap, or included media like CDs may be missing. Seller Inventory # BSM.F24P

Contact seller

Buy Used

£ 27.61
Convert currency
Shipping: FREE
Within U.S.A.
Destination, rates & speeds

Quantity: 1 available

Add to basket

Stock Image

Deitel, Harvey
Published by Prentice Hall, 2016
ISBN 10: 0134596323 ISBN 13: 9780134596327
Used Paperback

Seller: WorldofBooks, Goring-By-Sea, WS, United Kingdom

Seller rating 5 out of 5 stars 5-star rating, Learn more about seller ratings

Paperback. Condition: Very Good. The book has been read, but is in excellent condition. Pages are intact and not marred by notes or highlighting. The spine remains undamaged. Seller Inventory # GOR014119363

Contact seller

Buy Used

£ 22.40
Convert currency
Shipping: £ 5.60
From United Kingdom to U.S.A.
Destination, rates & speeds

Quantity: 1 available

Add to basket

Stock Image

Deitel, Harvey,Deitel, Paul
Published by Prentice Hall, 2016
ISBN 10: 0134596323 ISBN 13: 9780134596327
Used Paperback

Seller: HPB-Red, Dallas, TX, U.S.A.

Seller rating 5 out of 5 stars 5-star rating, Learn more about seller ratings

Paperback. Condition: Good. Connecting readers with great books since 1972! Used textbooks may not include companion materials such as access codes, etc. May have some wear or writing/highlighting. We ship orders daily and Customer Service is our top priority! Seller Inventory # S_420246065

Contact seller

Buy Used

£ 25.26
Convert currency
Shipping: £ 2.82
Within U.S.A.
Destination, rates & speeds

Quantity: 1 available

Add to basket

Seller Image

Deitel, Paul; Deitel, Harvey
Published by Prentice Hall, 2016
ISBN 10: 0134596323 ISBN 13: 9780134596327
Used Softcover

Seller: Goodwill of Greater Milwaukee and Chicago, Racine, WI, U.S.A.

Seller rating 5 out of 5 stars 5-star rating, Learn more about seller ratings

Condition: good. Book is considered to be in good or better condition. The actual cover image may not match the stock photo. Hard cover books may show signs of wear on the spine, cover or dust jacket. Paperback book may show signs of wear on spine or cover as well as having a slight bend, curve or creasing to it. Book should have minimal to no writing inside and no highlighting. Pages should be free of tears or creasing. Stickers should not be present on cover or elsewhere, and any CD or DVD expected with the book is included. Book is not a former library copy. Seller Inventory # SEWV.0134596323.G

Contact seller

Buy Used

£ 27.59
Convert currency
Shipping: £ 2.26
Within U.S.A.
Destination, rates & speeds

Quantity: 1 available

Add to basket

Stock Image

Deitel, Paul, Deitel, Harvey
Published by Pearson Education, Limited, 2016
ISBN 10: 0134596323 ISBN 13: 9780134596327
Used Softcover

Seller: Better World Books, Mishawaka, IN, U.S.A.

Seller rating 5 out of 5 stars 5-star rating, Learn more about seller ratings

Condition: Very Good. Used book that is in excellent condition. May show signs of wear or have minor defects. Seller Inventory # 39222869-6

Contact seller

Buy Used

£ 30.36
Convert currency
Shipping: FREE
Within U.S.A.
Destination, rates & speeds

Quantity: 1 available

Add to basket

Seller Image

Deitel, Paul; Deitel, Harvey
Published by Prentice Hall, 2016
ISBN 10: 0134596323 ISBN 13: 9780134596327
Used Softcover

Seller: Goodwill of Silicon Valley, SAN JOSE, CA, U.S.A.

Seller rating 4 out of 5 stars 4-star rating, Learn more about seller ratings

Condition: good. Supports Goodwill of Silicon Valley job training programs. The cover and pages are in Good condition! Any other included accessories are also in Good condition showing use. Use can include some highlighting and writing, page and cover creases as well as other types visible wear. Seller Inventory # GWSVV.0134596323.G

Contact seller

Buy Used

£ 27.60
Convert currency
Shipping: £ 3
Within U.S.A.
Destination, rates & speeds

Quantity: 1 available

Add to basket

There are 5 more copies of this book

View all search results for this book