• Complain

Joe Mayo - C# Cookbook: Modern Recipes for Professional Developers

Here you can read online Joe Mayo - C# Cookbook: Modern Recipes for Professional Developers full text of the book (entire story) in english for free. Download pdf and epub, get meaning, cover and reviews about this ebook. year: 2021, publisher: OReilly Media, genre: Computer. Description of the work, (preface) as well as reviews are available. Best literature library LitArk.com created for fans of good reading and offers a wide selection of genres:

Romance novel Science fiction Adventure Detective Science History Home and family Prose Art Politics Computer Non-fiction Religion Business Children Humor

Choose a favorite category and find really read worthwhile books. Enjoy immersion in the world of imagination, feel the emotions of the characters or learn something new for yourself, make an fascinating discovery.

Joe Mayo C# Cookbook: Modern Recipes for Professional Developers
  • Book:
    C# Cookbook: Modern Recipes for Professional Developers
  • Author:
  • Publisher:
    OReilly Media
  • Genre:
  • Year:
    2021
  • Rating:
    4 / 5
  • Favourites:
    Add to favourites
  • Your mark:
    • 80
    • 1
    • 2
    • 3
    • 4
    • 5

C# Cookbook: Modern Recipes for Professional Developers: summary, description and annotation

We offer to read an annotation, description, summary or preface (depends on what the author of the book "C# Cookbook: Modern Recipes for Professional Developers" wrote himself). If you haven't found the necessary information about the book — write in the comments, we will try to find it.

Even if youre familiar with C# syntax, knowing how to combine various language features is a critical skill when youre building applications. This cookbook is packed full of recipes to help you solve issues for C# programming tasks youre likely to encounter. Youll learn tried-and-true techniques to help you achieve greater productivity and improve the quality of your code.

Author and independent consultant Joe Mayo shares some of the most important practices youll need to be successful as a C# developer. Each section of this cookbook describes some useful facet of the C# programming language. These recipes--the result of many years of experience--are proven concepts for solving real-world problems with C#.

Recipes in this book will help you:

  • Set up your project, manage object lifetime, and establish patterns
  • Improve code quality through maintainability, error prevention, and correct syntax
  • Use LINQ to Objects for in-memory data manipulation and querying
  • Understand the differences between dynamic programming and reflection
  • Apply several async programming features you may not be aware of
  • Work with data using newer libraries and algorithms
  • Learn different ways to use new C# features, such as pattern matching and records

Joe Mayo: author's other books


Who wrote C# Cookbook: Modern Recipes for Professional Developers? Find out the surname, the name of the author of the book and a list of all author's works by series.

C# Cookbook: Modern Recipes for Professional Developers — read online for free the complete book (whole text) full work

Below is the text of the book, divided by pages. System saving the place of the last page read, allows you to conveniently read the book "C# Cookbook: Modern Recipes for Professional Developers" online for free, without having to search again every time where you left off. Put a bookmark, and you can go to the page where you finished reading at any time.

Light

Font size:

Reset

Interval:

Bookmark:

Make
C Cookbook by Joe Mayo Copyright 2022 Mayo Software LLC All rights - photo 1
C# Cookbook

by Joe Mayo

Copyright 2022 Mayo Software, LLC. All rights reserved.

Printed in the United States of America.

Published by OReilly Media, Inc. , 1005 Gravenstein Highway North, Sebastopol, CA 95472.

OReilly books may be purchased for educational, business, or sales promotional use. Online editions are also available for most titles (http://oreilly.com). For more information, contact our corporate/institutional sales department: 800-998-9938 or corporate@oreilly.com .

  • Acquisitions Editor: Amanda Quinn
  • Development Editor: Angela Rufino
  • Production Editor: Katherine Tozer
  • Copyeditor: Justin Billing
  • Proofreader: Piper Editorial Consulting, LLC
  • Indexer: WordCo Indexing Services, Inc.
  • Interior Designer: David Futato
  • Cover Designer: Karen Montgomery
  • Illustrator: Kate Dullea
  • October 2021: First Edition
Revision History for the First Edition
  • 2021-09-29: First Release

See http://oreilly.com/catalog/errata.csp?isbn=9781492093695 for release details.

The OReilly logo is a registered trademark of OReilly Media, Inc. C# Cookbook, the cover image, and related trade dress are trademarks of OReilly Media, Inc.

The views expressed in this work are those of the author, and do not represent the publishers views. While the publisher and the author have used good faith efforts to ensure that the information and instructions contained in this work are accurate, the publisher and the author disclaim all responsibility for errors or omissions, including without limitation responsibility for damages resulting from the use of or reliance on this work. Use of the information and instructions contained in this work is at your own risk. If any code samples or other technology this work contains or describes is subject to open source licenses or the intellectual property rights of others, it is your responsibility to ensure that your use thereof complies with such licenses and/or rights.

978-1-492-09369-5

[LSI]

Preface
Why I Wrote This Book

In the course of a career, we collect many tools. Whether concepts, techniques, patterns , or reusable code, these tools help us get our job done. The more we collect, the better, because we have so many problems to solve and applications to build. C# Cookbook contributes to your toolset by providing you with a variety of recipes.

Things change over time, including programming languages. As of this writing, the C# programming language is over 20 years old, and software development has changed during its lifetime. There are a lot of recipes that could be written; this book acknowledges the evolution of C# over time and the fact that modern C# code makes us more productive.

This book is full of recipes that Ive used throughout my career. In addition to stating a problem, presenting code, and explaining the solution, each discussion includes deeper insight into why each recipe is important. Throughout the book, Ive avoided advocacy of process or absolute declarations of you must do it this way because much of what we do in creating software requires trade-offs. In fact, youll find several discussions of what the consequences or trade-offs are with a recipe. This respects the fact that you can consider to what extent a recipe applies to you.

Who This Book Is For

This book assumes that you already know basic C# syntax. That said, there are recipes for various levels of developers. Whether youre a beginner, intermediate, or senior developer, there should be something for you. If youre an architect, there might be some interesting recipes that help you get back up to speed on the latest C# techniques .

How This Book Is Organized

When brainstorming for this book, the entire focus was on answering the question What do C# developers need to do? Looking at the list, certain patterns emerged and evolved into chapters:

  • One of the first things I do when writing code is to build the types and organize the application. So I wrote to show how to create and organize types. Youll see recipes dealing with patterns because thats how I code.

  • After creating types, we add type members, like methods, and the logic they contain, which is a natural category of recipes for .

  • What good is code unless it works well? Thats why I added , which contains recipes that help improve the quality of code. While this chapter is packed with useful recipes, youll want to check out the recipe that shows how to use nullable reference types.

While Chapters to the end of the book I break away, taking a technology-specific focus:

  • Many people think of Language Integrated Query (LINQ) as a database technology. While LINQ is useful for working with databases, its also excellent for in-memory data manipulation and querying. Thats why discusses what you can do with the in-memory provider, called LINQ to Objects.

  • Reflection was part of C# 1, but dynamic programming came along later in C# 4. I think its important to discuss both technologies in and even show how dynamic programing can be better than reflection in some situations. Also, be sure to check out the Python interop recipes.

  • Async programming was a great addition to C# and seems straightforward, on the surface. covers async with recipes that explain several important features you might not be aware of.

  • All apps use data, whether securing, parsing, or serializing. includes several recipes covering different things you want to do with data. It focuses on some of the newer libraries and algorithms you might want to use for working with data.

  • One of the largest transformations of the C# language occurred over the last few versions in the area of pattern matching. There are so many that I was able to fill with only pattern-matching recipes.

  • C# continues to evolve and captures recipes dedicated to C# 9. Well look at some of the new features and discuss how to apply them. While I provide insight in the discussion, remember that sometimes new features can become more integral to a language in later versions. If youre into the cutting edge, these recipes are pretty interesting.

Conventions Used in This Book

The following typographical conventions are used in this book:

Italic

Indicates new terms, URLs, email addresses, filenames, and file extensions.

Constant width

Used for program listings, as well as within paragraphs to refer to program elements such as variable or function names, databases, data types, environment variables, statements, and keywords.

Constant width bold

Shows commands or other text that should be typed literally by the user.

Constant width italic

Shows text that should be replaced with user-supplied values or by values determined by context.

Tip

This element signifies a tip or suggestion.

Note

This element signifies a general note.

Warning

This element indicates a warning or caution.

Using Code Examples

Supplemental material (code examples, exercises, etc.) is available for download at https://github.com/JoeMayo/csharp-nine-cookbook.

If you have a technical question or a problem using the code examples, please send email to .

Next page
Light

Font size:

Reset

Interval:

Bookmark:

Make

Similar books «C# Cookbook: Modern Recipes for Professional Developers»

Look at similar books to C# Cookbook: Modern Recipes for Professional Developers. We have selected literature similar in name and meaning in the hope of providing readers with more options to find new, interesting, not yet read works.


Reviews about «C# Cookbook: Modern Recipes for Professional Developers»

Discussion, reviews of the book C# Cookbook: Modern Recipes for Professional Developers and just readers' own opinions. Leave your comments, write what you think about the work, its meaning or the main characters. Specify what exactly you liked and what you didn't like, and why you think so.