C# (.Net 4.0) 中等效的 Power builder OLEObject 类型
我正在将 Power Builder 应用程序迁移到 .Net 4.0(c#)。 我需要有关 Power 生成器代码中使用的 OLEObject 类型的帮助。下面是代码示例。
OLE对象测试;
测试 = MyClass.GetContext();
int value = test.get("on")
请告诉我C#中Power Builder的OLEObject相当于什么? 请尽快回复。提前致谢
I am migrating Power builder application into .Net 4.0(c#).
I need help regarding OLEObject type used in Power builder code. Below are the code example.
OLEObject test;
test = MyClass.GetContext();
int value = test.get("on")
Please tell me what the equivalent of OLEObject of Power Builder in C#??
Please response ASAP. Thanks in Advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
C# 版本 4 dynamic 关键字。
如果您坚持使用早期版本,那么您最好在 VB.NET 中编写代码。在 C# 中进行后期绑定非常难看。
The C# version 4 dynamic keyword.
If you're stuck on an earlier version then you're better off writing the code in VB.NET. Doing late binding in C# is pretty ugly.