J
john
In VS.Net you can use the CreateObject function to create
a late bound COM object. For example:
Dim oDataLinks As Object
oDataLinks = CreateObject("DataLinks")
This creates a DataLinks object that can be used to get a
connection object. Its easily done in VB.Net.
But what do you use the CreateObject function in C#? is
there an equivilant?
thanks
a late bound COM object. For example:
Dim oDataLinks As Object
oDataLinks = CreateObject("DataLinks")
This creates a DataLinks object that can be used to get a
connection object. Its easily done in VB.Net.
But what do you use the CreateObject function in C#? is
there an equivilant?
thanks