Concat strings by & and + in VB.Net

后端 未结 8 921
萌比男神i
萌比男神i 2020-12-16 10:53

Is there any difference between & and + operators while concatenating string? if yes, then what is difference? And if No, then why below code generating exception?

8条回答
  •  伪装坚强ぢ
    2020-12-16 11:40

    You can write '&' to add string and integer :

    processDetails=objProcess.ProcessId & ":" & objProcess.name
    message = msgbox(processDetails,16,"Details")
    

    output will be:

    5577:wscript.exe
    

提交回复
热议问题