ASP.NET Core Course: Build a C# App in One Hour
In this free tutorial, you will learn how to create a web database app in ASP.NET Core using Visual Studio and the C# language in just one hour.
In this free tutorial, you will learn how to create a web database app in ASP.NET Core using Visual Studio and the C# language in just one hour.
Generating source code is not a new technology, and there are lots of different C# offerings out there available for you to use, or that you may in fact be using right now. Tools like PostSharp, Fody, CodeSmith, and many, many more. What is new however, with C# 9 and …
This presentation covers the new features of C#9.0, the future of the language and some amazing features built for you.
Immutable objects – aka objects whose properties and fields can’t change after instantiation – are one of the fundamental pillars of functional programming. Yet, it also has other great uses in classically object-oriented languages such as C#. Immutability can help make your code cleaner, easier to reason about, and reduce …
There are amazing things happening with C# and .NET Core regarding performance. We have new types such as Span and Memory for working with and parsing in-memory data. We have pipelines for high-performance IO and we have ArrayPool, MemoryPool and OjectPool to help reduce GC allocations.
The biggest feature of C# 8.0 is undoubtedly nullable reference types. Rather than trying to rush through all the new features, this talk will just focus on this one. What is the point? What is the syntax? What should you expect? What might be unexpected?