I am looking to convert some VB6/COM+ code to C#/COM+
However where in VB6 or VB.NET I have:
Dim objAdmin
objAdmin = Server.CreateObject("AppAdmin.GUI")
objAdmin.ShowPortal()
In C# it seems like I have to do the following:
object objAdmin = null;
System.Type objAdminType = System.Type.GetTypeFromProgID("AppAdmin.GUI");
m_objAdmin = System.Activator.CreateInstance(objAdminType);
objAdminType.InvokeMember("ShowPortal", System.Reflection.BindingFlags.InvokeMethod, null, objAdmin, null);
Is there a way of getting c# to not have to use the InvokeMember function and just call the function directly?
Is there a way of getting c# to not have to use the InvokeMember function and just call the function directly?
Yes, as of C# 4 with dynamic typing:
dynamic admin = Activator.CreateInstance(Type.GetTypeFromProgID("AppAdmin.GUI"));
admin.ShowPortal();
It's still more verbose in the CreateObject
part, but you could always wrap that up in a method call if you wanted. (There may be an existing call I'm not aware of, or you could try to find whatever VB is calling in that case - I don't know the details of Server.CreateObject
.)
Note that dynamic typing is richer than just making reflection simpler, but it certainly does that. Behind the scenes, the same kind of thing will be happening in both cases though - it's still not going to be as fast as static binding, but it's almost certainly fast enough.
Yes, you can use the dynamic
keyword
dynamic objAdmin = System.Activator.CreateInstance(objAdminType);
objAdmin.ShowPortal();
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With