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?
Yes, you can use the
dynamic
keywordYes, as of C# 4 with dynamic typing:
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 ofServer.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.
If you have access to the actual class type, you can do it as follows: