错误:' GetRandColor'没有宣布。由于其保护级别,它可能无法访问

时间:2016-02-03 18:49:09

标签: html vb.net

我有以下错误。 ' GetRandColor'没有宣布。由于其保护级别,它可能无法访问。

有什么想法解决这个问题吗?

1 个答案:

答案 0 :(得分:0)

我们需要查看声明的原因是错误告诉你它找不到'GetRandColor'的定义,这可能是因为函数或类的保护级别。

因此,如果您将GetRandColor定义为

私有函数GetRandColor或受保护函数GetRandColor,Partial Class无法“看到”该函数。您需要将其声明为:

Public Function GetRandColor。

现在,另一个问题可能是Class被定义为Private或Protected,在这种情况下,您将无法看到类中的任何函数。当然,如果没有看到声明,我们就无法知道......