有两种方法
- String.Format()
- $
代码如下
Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
Dim name As String
Dim age As Integer = 1
name = InputBox("请输入用户名字", "用户信息录入")
age = InputBox("请输入用户年龄", "用户信息录入")
'String.Format()用法
MsgBox(String.Format("当前录入的用户名字是{0},今年{1}岁了", {name, age}))
'$用法
MsgBox($"你好啊, {name},听说你今年{age}了")
End Sub
输出结果如下图