Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Why is the C# CreateObject so much more verbose than VB.NET?

Tags:

c#

vb.net

com

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?

like image 802
Phil Hannent Avatar asked Sep 07 '12 13:09

Phil Hannent


2 Answers

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.

like image 168
Jon Skeet Avatar answered Nov 16 '22 14:11

Jon Skeet


Yes, you can use the dynamic keyword

dynamic objAdmin = System.Activator.CreateInstance(objAdminType);
objAdmin.ShowPortal();
like image 35
sloth Avatar answered Nov 16 '22 15:11

sloth