I have created a function that takes a SQL command and produces output that can then be used to fill a List of class instances. The code works great. I\'ve included a slig
Question #2:
I don't really know, but I would tend to use Activator.CreateObject() instead of FormatterServices.GetUninitializedObject(), because your object might not be created properly. GetUninitializedObject() won't run a default constructor like CreateObject() will, and you don't necessarily know what's in the black box of T...