3
我是新來的PowerShell和我有這樣的疑問: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
謝謝你幫