myObj = CreateObject("Object")
but how do you do the same in c#. I know there is Server.CreateObject but I am not writing an ASP.NET app, it is a windows application. I have to late bind unfortunately because I dont know what dll to reference to create the object that I need. Some help would be much appreciated.
Thanks

CreateObject in C#
MartinDolphin
object o = new object();
Silvercat
Thanks, that seemed to sort it out.
thechristopher
Activator.CreateInstance(Type.GetTypeFromProgID("object"));
Ivan Scattergood
Sjefsmoen