无法调用“NotInheritable”类

时间:2014-03-21 09:11:56

标签: asp.net vb.net scope

在我的asp.net/vb.net网络应用程序项目中,我有一些NotInheritable类。

我是这堂课:

Public NotInheritable Class GestioneConstants

    Public Shared FIRST_CONST As String                = "firstConst"
    Public Shared SECOND_CONST As String               = "firstConst"


End Class

这一切都很好。 现在我有了第二堂课

Public NotInheritable Class Utilities

   Public Shared Function firstFunction() As String

      return "firstFunction"

   End Function

End Class

这两个类位于同一个文件夹中

现在,我有这种情况:

  1. 如果我尝试使用实用工具中的GestioneConstants,则可以使用
  2. 如果我尝试使用GestioneConstants中的Utilities不起作用
  3. 如果我尝试使用另一个的GestioneConstants和Utilities NotInheritable类适用于GestioneConstants但不适用 应用
  4. 如果我尝试使用asp页面中的GestioneConstants和Utilities 处理程序适用于两者。
  5. 我怎么能有这种行为?

    我尝试添加“导入myAppNamespace”,但我仍然看不到“实用工具”

    如果我尝试数字:进口。我可以看到GestioneConstants为自动完成,但无法看到Utilites。

0 个答案:

没有答案