#148 – April 02, 2017
Reporting in WPF (XAML) made easy.
A Hitchhikers Guide to the CoreCLR Source Code
Just over 2 years ago Microsoft open-sourced the entire .NET framework, this posts attempts to provide a ‘Hitchhikers Guide’ to the source-code found in the CoreCLR GitHub repository.
Dynamically generating classes in runtime
Reflection API in .NET is one of the most powerful and incredible features of it. And along with DLR it enables a whole new look at what can be done in .NET languages.
C# And The MetadataType Attribute
Suppose you have a database first approach when building a web application. If your database changes often and you need to regenerate the model class, you will lose all of the attributes you had already applied to the model class such as the ones for validation, label names etc. This approach can be very inefficient and you can lose important attributes of your fields.
A C# .NET Class Library containing tools for parsing the command line arguments of console applications.