If you can tolerate using factory methods (instead of the constructors MyClass you asked for) you could always do something like this:
class MyClass<T>
{
private readonly T _value;
private MyClass(T value) { _value = value; }
public static MyClass<int> FromInt32(int value) { return new MyClass<int>(value); }
public static MyClass<string> FromString(string value) { return new MyClass<string>(value); }
// etc for all the primitive types, or whatever other fixed set of types you are concerned about
}
A problem here is that you would need to type MyClass.FromInt32MyClass<AnyTypeItDoesntMatter>.FromInt32, which is annoying. There isn't a very good way around this if you want to maintain the private-ness of the constructor, but here are a couple of workarounds:
- Create an abstract class
MyClass. MakeMyClass<T>inherit fromMyClassand nest it withinMyClass. Move the static methods toMyClass. This will all the visibility work out, at the cost of having to accessMyClass<T>asMyClass.MyClass<T>. - Use
MyClass<T>as given. Make a static classMyClasswhich calls the static methods inMyClass<T>usingMyClass<AnyTypeItDoesntMatter>(probably using the appropriate type each time, just for giggles). - (Easier, but certainly weird) Make an internal abstract type
MyClasswhich inherits fromMyClass<AnyTypeItDoesntMatter>. (For concreteness, let's say MyClass.MyClass<int>.) Because you can call static methods defined in a base class through the name of a derived class, you can now useMyClass.FromString.
This gives you static checking at the expense of more writing.
If you are happy with dynamic checking, I would use some variation on the TypeCode solution above.
