When designing applications, it is important to know when to use an abstract class and when to use an interface. Although abstract classes and interfaces seem similar in some ways, there are key ...
Take advantage of anonymous types in C# to create and instantiate types that have read-only properties without having to declare the type beforehand An anonymous type is a type that doesn’t have a ...
When working with TypeScript it's not unusual to need a class that matches an already existing server-side class written in C#. Here's one way to get from C# to TypeScript by doing what you normally ...