The minimal hosting model in ASP.NET Core 6

ASP.NET Core 6 has introduced a new hosting model that is much more simplified and streamlined, reducing the amount of boilerplate code you need to write to get your ASP.NET Core application up and running. This article introduces this new hosting model with relevant code examples wherever appropriate. To work with the code examples provided … Read more

Windows Forms

Persist and Restore Forms for larger application with A lot of different forms and all either factory created or dependency injection loaded FormStateModel FormStateDataModel FormStateManager Implementation More Data Models Used since the System.Dawing Models cant be serialized Misc – Data Mapping

C# .Net 6 Samples

Some example of simple .Net 6 but common coding scenarios (CS# lang v10) Could also be converted to a JSON Serializer or XML reader Parse each line from an auto genereted web hosted text file containing version info in order to perform self update. Async File Download using HttpClient { string url = Properties.Settings.Default.UpdateHistoryUrl; List<;ApplicationVersion>; … Read more