0

以下是密封类。如何访问该类中的方法?

Public NotInheritable Class ConnectionStringProvider
    Public Shared Function GetConnectionString() As String
        Dim tReturn As String = ""
        Try
            tReturn = _ConnectionString
        Catch
        Finally
        End Try
        Return tReturn
    End Function
End Class

提前致谢

4

2 回答 2

1

只需使用类名和函数名:

Dim ConString As String = ConnectionStringProvider.GetConnectionString()

如果这不能满足您的查询,请详细说明您的问题。

于 2013-09-27T10:20:14.327 回答
0

您可以访问它。我不认为这有什么问题。

这就是我用一个例子所做的。

sealed class Example
{
    public static void GetStringValue()
    {
        Console.WriteLine("Inside Example");
    }
}

并用类的名称来调用它,在这种情况下它是 Example

所以 :

Example.GetStringValue()会屈服于我

内部示例

这是你想说的吗?

于 2013-09-27T11:34:55.823 回答