首页题库练习题目详情
Visual Basic语言程序设计单选题中等

以下哪项是VB中字符串连接的正确方式?

As = "abc" + "def"
Bs = "abc" & "def"
Cs = Concat("abc", "def")
Ds = Join("abc", "def")