Is there a way to enforce/limit the types that are passed to primitives? (bool, int, string, etc.)
Now, I know you can limit the generic typ
public class Class1 where GenericType : struct { }
This one seemed to do the job..