VB

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)