Search results for query: *

  1. M

    Question Enforce "contract" without using an Interface

    I have a situation where I need to make sure that a class implements a set of Shared methods. The context is quite complex, so I'll spare the details. I basically have an abstract class that deals heavily with Generics. I need to call a Shared method on the Generic class T. I need to make sure...
  2. M

    Question Create Property Setter Delegate via DynamicMethod

    I'm building an abstract class that handles some common operations for all of my data access objects. The class will utilize generics, so I can't make direct calls to constructors, business object properties, etc. Reflection is way too slow for what I want to accomplish, so I am using a...
Back
Top