在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
经常看到有些VB的例子中直接用个CreateObject就可调用系统功能(大多是COM对象),像用户设定,网络设定等等。虽然C#中可以通过使用VB的命名空间的方法来调用CreateObject函数,但是这样比较没什么用,因为生成的对象的所带有的方法都不能使用。C#中还可以直接用添加引用的方式来调用一些对象,前提是你知道该添加哪个引用。 C#中类似 CreateObject 的方法就是 System.Activator.CreateInstance. 后续的对象函数的调用可以通过InvokeMember方法来实现。 Public Sub TestLateBind()
Dim o As Object = CreateObject("SomeClass") o.SomeMethod(arg1, arg2) w = o.SomeFunction(arg1, arg2) w = o.SomeGet o.SomeSet = w End Sub
public void TestLateBind()
{ System.Type oType = System.Type.GetTypeFromProgID("SomeClass"); object o = System.Activator.CreateInstance(oType); oType.InvokeMember("SomeMethod", System.Reflection.BindingFlags.InvokeMethod, null, o, new object[] {arg1, arg2}); w = oType.InvokeMember("SomeFunction", System.Reflection.BindingFlags.InvokeMethod, null, o, new object[] {arg1, arg2}); w = oType.InvokeMember("SomeGet", System.Reflection.BindingFlags.GetProperty, null, o, null); oType.InvokeMember("SomeSet", System.Reflection.BindingFlags.SetProperty, null, o, new object[] {w}); } 里面有方法,属性的调用设定,很简单。 public void TestLateBind()
{ System.Type wordType = System.Type.GetTypeFromProgID( "Word.Application" ); Object word = System.Activator.CreateInstance( wordType ); wordType.InvokeMember( "Visible", BindingFlags.SetProperty, null, word, new Object[] { true } ); Object documents = wordType.InvokeMember( "Documents", BindingFlags.GetProperty, null, word, null ); Object document = documents.GetType().InvokeMember( "Add", BindingFlags.InvokeMethod, null, documents, null ); }
|
请发表评论