hello @avene
You can try:
String.Concat(amount1,amount2) to get your desired result.
String.Join method is used to concatenate the elements of an array, using the specified separator between each element.
hence the parameters passed in the method are different.
And the purpose of this method is also different.
Dim array(2) As String
array(0) = “Dog”
array(1) = “Cat”
array(2) = “Python”
’ Join array.
Dim result As String = String.Join(“,”, array)
OUTPUT
Dog,Cat,Python
To combine strings you can use + or & .
Because the + symbol also represents an arithmetic operator, your code will be easier to read if you use the & symbol for concatenation.