VB

作者: 前端混合开发 | 来源:发表于2021-09-14 09:25 被阅读0次
    VB sub如何返回值
    Private Sub Main()
        Dim value = getValue()
        'do something with value
    End Sub
    
    Private Function getValue() As Integer
        Return 3
    End Function
    
    VB sub如何返回对个值(multiple value)
    VB 生成有返回值的DLL

    ### How to write a dll in VB.NET with accpeting

    相关文章

      网友评论

          本文标题:VB

          本文链接:https://www.haomeiwen.com/subject/zyxjcqtx.html