1
vote
What is the correct way to write a constructor for a wrapper class
I have written a base Wrapper Object that I have all my wrappers inherit from.
public abstract class BaseWrapper<TBaseType>
where TBaseType : class
{
protected readonly TBa …
