我是 powershell 新手,我有这个问题:
我做了这个功能:
Function A_Function($a,$b){
$d = $a + $b
$d
}
A_Function "0","1"
问题是,此函数将其作为输出:
0
1
我希望它在一条线上:
01
我试过这样的事情:
$d = ($a + $b) #result: same a sabove
$d = (""+$a + $b+"") #result: 1 0, but i dont want that space inbetween
$d = "$a$b" #result: 1 0, but i dont want that space inbetween
感谢您的帮助