Book Image

Mastering C# and .NET Framework

Book Image

Mastering C# and .NET Framework

Overview of this book

Mastering C# and .NET Framework will take you in to the depths of C# 6.0/7.0 and .NET 4.6, so you can understand how the platform works when it runs your code, and how you can use this knowledge to write efficient applications. Take full advantage of the new revolution in .NET development, including open source status and cross-platform capability, and get to grips with the architectural changes of CoreCLR. Start with how the CLR executes code, and discover the niche and advanced aspects of C# programming – from delegates and generics, through to asynchronous programming. Run through new forms of type declarations and assignments, source code callers, static using syntax, auto-property initializers, dictionary initializers, null conditional operators, and many others. Then unlock the true potential of the .NET platform. Learn how to write OWASP-compliant applications, how to properly implement design patterns in C#, and how to follow the general SOLID principles and its implementations in C# code. We finish by focusing on tips and tricks that you'll need to get the most from C# and .NET. This book also covers .NET Core 1.1 concepts as per the latest RTM release in the last chapter.
Table of Contents (21 chapters)
Mastering C# and .NET Framework
Credits
About the Author
Acknowledgements
About the Reviewer
www.PacktPub.com
Preface
Index

NET Core 1.1


A few days before closing this book's editing process, Microsoft announced in the Connect() event the availability of this new version of .NET Core. This update also affects the related versions of the "Core" family: ASP.NET Core 1.1 and EF Core 1.1.

Obviously, it's not a version with many foundational changes, nor breaking changes, either. The focus of the development team was to broaden the OS targets, improve performance, and fix bugs, fundamentally.

Thus, and according to the official page in Github (https://github.com/dotnet/core/blob/master/release-notes/1.1/1.1.md) and the team's blog, the changes are mainly located around four different areas:

  • Support for the following distributions:

    • Red Hat Enterprise Linux 7.2

    • CentOS 7.1+

    • Debian 8.2+

    • Fedora 23, 24*

    • Linux Mint 17.1, 18*

    • Oracle Linux 7.1

    • Ubuntu 14.04 & 16.04

    • Mac OS X 10.11, and 10.12

    • Windows 7+ / Server 2012 R2+

    • Windows Nano Server TP5 Linux Mint 18

    • OpenSUSE 42.1

    • MacOS 10.12 (also added to .NET Core 1.0)

    • Windows Server 2016 (also...