gpt4 book ai didi

vb.net - 全局函数

转载 作者:行者123 更新时间:2023-12-01 11:05:10 24 4
gpt4 key购买 nike

我想创建一个全局函数以在我的应用程序中使用。假设它是关于与数据库的连接。

我计划在全局函数中使用的代码是:

myConnection = New SqlConnection("...........")
myConnection.Open()

这样我就可以在我的应用程序中以各种形式调用它。这可以让我以后轻松编辑连接。

谁能帮我展示如何定义这个全局函数以及如何在表单中调用这个函数。

此致

最佳答案

Public NotInheritable Class Utilities

Private Sub New()
End Sub

Public Shared Function MyMethod(myParam As Object) As MyObject
'Do stuff in here
Return New MyObject()
End Function

End Class

然后消费

Dim instance As MyObject = Utilities.MyMethod(parameterObject)

关于vb.net - 全局函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6608846/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com