Print Out .NET Classes to String in C# February 28, 2018May 15, 2020Munir HusseiniNo Comments Ever needed to generate a string that contains the C#-Code of a .NET class (in other words, print out -NET…
Fast Conversion of Objects to Dictionaries in C# February 28, 2018May 31, 2020Munir Husseini2 Comments Converting (plain old) C# objects to dictionaries is easy with Reflection (e.g., as seen here). But Reflection is rather slow,…
ASP.NET Core: Precompiled Razor Views in Class Library February 12, 2018May 15, 2020Munir Husseini3 Comments Generating precompiled Razor views in ASP.NET Core is easy. However, there are a few things you need to know so…