本文介绍了在C#程序中使用VB.NET创建的类的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个班级clsABC这是由VB.NET创建的。我正在尝试在

C#程序中使用它。虽然我可以在项目参考中添加它,但我无法浏览编码中的方法和属性。

请参阅以下编码:


使用clsABC

clsABC tmpClass = new clsABC();

tmpClass。 < ------我可以看到任何方法和属性。

I have a class "clsABC" which is created by VB.NET. I am trying use it in the
C# program. Although I can add it in the project reference, I can''t browse
the methods and properties in the coding.
Please see the following coding:

using clsABC
clsABC tmpClass = new clsABC();
tmpClass. <------ I can see any methods and properties.

推荐答案






它的方法是公开的吗?


问候


Richard Blewett - DevelopMentor





这篇关于在C#程序中使用VB.NET创建的类的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-15 10:20