C# Dynamic Type Initializer
I'm trying to build something like the C# type initalizer dynamically: MyClass class = new MyClass { MyStringProperty= inputString }; I want to build a generic method that reflects over a given type once and returns a delegate which creates a new instance of the class and populates it based on the input parameter. The method signature...