
Explicit Interface Implementation with C#
With C#, interfaces can be implemented implicitly or explicitly. With implicit interface implementations, the members of the interface are public … Continue reading Explicit Interface Implementation with C#
With C#, interfaces can be implemented implicitly or explicitly. With implicit interface implementations, the members of the interface are public … Continue reading Explicit Interface Implementation with C#
C# has different meanings for the using keyword. One is the using directive to import types from namespaces, and to … Continue reading Using, using, using with C# 8
.NET Core 3.0 doesn’t make it easier to choose the correct Web technology creating .NET applications. Some more options have … Continue reading Choosing the right ASP.NET Core technology
ASP.NET Core included the WebHost class that was used in the Main method to startup everything up – including the … Continue reading Hosting DI Container with .NET Core 3.0
One of the many great features of C# 8 is async streams. Before C# 8, you could use the await … Continue reading Async Streams with C# 8
I had some great days at BASTA! Spring in Frankfurt – with three presentations. Thank you for joining! My presentations … Continue reading Slide and Source Code for BASTA! Frankfurt, 2019
Using EF Core, references can be eager loaded, explicitly loaded, and lazy loaded. With eager loading you load references by … Continue reading Lazy Loading with EF Core
Slides and source code for my C# 7 & 8 and Blazor sessions at the thrive conference in Ljubljana Continue reading Slides and Source Code for Thrive Conference in Ljubljana, 2018
With .NET Core, diagnostic information can be written using the ILogger interface. ILogger offers provider-based functionality to write to the … Continue reading Writing ILogger Diagnostics to a File
UWP controls can be used in WPF applications using XAML islands. Continue reading Desktop Applications with XAML. Part 3: XAML Islands