• Complain

Ian Griffiths - Programming C# 10: Build Cloud, Web, and Desktop Applications

Here you can read online Ian Griffiths - Programming C# 10: Build Cloud, Web, and Desktop Applications full text of the book (entire story) in english for free. Download pdf and epub, get meaning, cover and reviews about this ebook. year: 2022, 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.

Ian Griffiths Programming C# 10: Build Cloud, Web, and Desktop Applications
  • Book:
    Programming C# 10: Build Cloud, Web, and Desktop Applications
  • Author:
  • Publisher:
    OReilly Media
  • Genre:
  • Year:
    2022
  • Rating:
    3 / 5
  • Favourites:
    Add to favourites
  • Your mark:
    • 60
    • 1
    • 2
    • 3
    • 4
    • 5

Programming C# 10: Build Cloud, Web, and Desktop Applications: summary, description and annotation

We offer to read an annotation, description, summary or preface (depends on what the author of the book "Programming C# 10: Build Cloud, Web, and Desktop Applications" wrote himself). If you haven't found the necessary information about the book — write in the comments, we will try to find it.

C# is undeniably one of the most versatile programming languages available to engineers today. With this comprehensive guide, youll learn just how powerful the combination of C# and .NET can be. Author Ian Griffiths guides you through C# 10.0 and .NET 6 fundamentals and techniques for building cloud, web, and desktop applications.

Designed for experienced programmers, this book provides many code examples to help you work with the nuts and bolts of C#, such as generics, LINQ, and asynchronous programming features. Youll get up to speed on .NET 6 and the latest C# 9.0 and 10.0 additions, including records, enhanced pattern matching, and new features designed to remove ceremony to improve productivity.

  • Understand how .NET has changed in the most recent releases, and learn what it means for application development
  • Select the most appropriate C# language features for any task
  • Learn when to use the new features and when to stick with older ones
  • Examine the range of functionality available in .NETs class libraries
  • Learn how you can apply these class libraries to practical programming tasks
  • Explore numerous small additions to .NET that improve expressiveness

    Unlike books that focus on Visual Studio and technologies that interact with C#, this one covers the core language, and mastery of this core is essential to successfully building good software. It covers important concepts followed by generous code examples to explain them. Its thorough, detailed, and gets at the nooks and crannies of the language rarely covered elsewhere. Its a complete course on C#. --Jeremy Morgan Software/DevOps engineer

    Ian Griffiths has worked in various aspects of computing, including computer networking, embedded real-time systems, broadcast television systems, medical imaging, and all forms of cloud computing. Ian is a Technical Fellow at endjin, and a Microsoft MVP in Developer Technologies. Hes the author of several OReilly books and has written courses on Windows Presentation Foundation (WPF) and TPL Tables. Technology brings him joy.

Ian Griffiths: author's other books


Who wrote Programming C# 10: Build Cloud, Web, and Desktop Applications? Find out the surname, the name of the author of the book and a list of all author's works by series.

Programming C# 10: Build Cloud, Web, and Desktop Applications — 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 "Programming C# 10: Build Cloud, Web, and Desktop Applications" 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
Programming C 10 by Ian Griffiths Copyright 2022 Ian Griffiths All rights - photo 1
Programming C# 10

by Ian Griffiths

Copyright 2022 Ian Griffiths. 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: Corbin Collins
  • Production Editor: Elizabeth Faerm
  • Copyeditor: Kim Cofer
  • Proofreader: Piper Editorial Consulting, LLC
  • Indexers: WordCo Indexing Services, Inc. and Sue Klefstad
  • Interior Designer: David Futato
  • Cover Designer: Karen Montgomery
  • Illustrator: Kate Dullea
  • August 2022: First Edition
Revision History for the First Edition
  • 2022-08-05: First Release

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

The OReilly logo is a registered trademark of OReilly Media, Inc. Programming C# 10, 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-098-11781-8

[LSI]

Dedication

I dedicate this book to my excellent wife, Deborah, and to my wonderful daughters, Hazel, Victoria, and Lyra. Thank you for enriching my life.

Preface

C# has now existed for around two decades. It has grown steadily in both power and size, but Microsoft has always kept the essential characteristics intact. Each new capability is designed to integrate cleanly with the rest, enhancing the language without turning it into an incoherent bag of miscellaneous features.

Even though C# continues to be a fairly straightforward language at its heart, there is a great deal more to say about it now than in its first incarnation. Because there is so much ground to cover, this book expects a certain level of technical ability from its readers.

Who This Book Is For

I have written this book for experienced developersIve been programming for years, and I set out to make this the book I would want to read if that experience had been in other languages, and I were learning C# today. Whereas earlier editions explained some basic concepts such as classes, polymorphism, and collections, I am assuming that readers will already know what these are. The early chapters still describe how C# presents these common ideas, but the focus is on the details specific to C#, rather than the broad concepts.

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. In examples, highlights code of particular interest.

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://oreil.ly/prog-cs-10-repo.

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

This book is here to help you get your job done. In general, if example code is offered with this book, you may use it in your programs and documentation. You do not need to contact us for permission unless youre reproducing a significant portion of the code. For example, writing a program that uses several chunks of code from this book does not require permission. Selling or distributing examples from OReilly books does require permission. Answering a question by citing this book and quoting example code does not require permission. Incorporating a significant amount of example code from this book into your products documentation does require permission.

We appreciate, but generally do not require, attribution. An attribution usually includes the title, author, publisher, and ISBN. For example: Programming C# 10 by Ian Griffiths (OReilly). Copyright 2022 by Ian Griffiths, 978-1-098-11781-8.

If you feel your use of code examples falls outside fair use or the permission given above, feel free to contact us at .

OReilly Online Learning
Note

For more than 40 years, OReilly has provided technology and business training, knowledge, and insight to help companies succeed.

Our unique network of experts and innovators share their knowledge and expertise through books, articles, conferences, and our online learning platform. OReillys online learning platform gives you on-demand access to live training courses, in-depth learning paths, interactive coding environments, and a vast collection of text and video from OReilly and 200+ other publishers. For more information, please visit http://oreilly.com.

How to Contact Us

Please address comments and questions concerning this book to the publisher:

  • OReilly Media, Inc.
  • 1005 Gravenstein Highway North
  • Sebastopol, CA 95472
  • 800-998-9938 (in the United States or Canada)
  • 707-829-0515 (international or local)
  • 707-829-0104 (fax)

We have a web page for this book, where we list errata, examples, and any additional information. You can access this page at https://oreil.ly/prgrmg-c-10.

Email us with comments or technical questions at .

For news and information about our books and courses, visit https://oreilly.com.

Find us on LinkedIn: https://linkedin.com/company/oreilly-media.

Follow us on Twitter: https://twitter.com/oreillymedia.

Watch us on YouTube: https://youtube.com/oreillymedia.

Acknowledgments

Many thanks to the books official technical reviewers: Stephen Toub, Howard van Rooijen, and Glyn Griffiths. Id also like to give a big thank-you to those who reviewed individual chapters or otherwise offered help or information that improved this book: Brian Rasmussen, Eric Lippert, Andrew Kennedy, Daniel Sinclair, Brian Randell, Mike Woodring, Mike Taulty, Bart De Smet, Matthew Adams, Jess Panni, Jonathan George, Mike Larah, Carmel Eve, Ed Freeman, Elisenda Gascon, Jessica Hill, Liam Mooney, Nehemiah Campbell, and Shahryar Saljoughi. Thanks in particular to endjin, both for allowing me to take time out from work to write this book and for creating such a great place to work.

Next page
Light

Font size:

Reset

Interval:

Bookmark:

Make

Similar books «Programming C# 10: Build Cloud, Web, and Desktop Applications»

Look at similar books to Programming C# 10: Build Cloud, Web, and Desktop Applications. 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 «Programming C# 10: Build Cloud, Web, and Desktop Applications»

Discussion, reviews of the book Programming C# 10: Build Cloud, Web, and Desktop Applications 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.