1
我想在Powershell v5中定義一個類,我無法從類函數內部訪問變量。爲什麼我不能在Powershell 5中訪問函數中的類變量?
Ex。
PS C:\> class Foo{
$bar = 'foobar'
mymethod(){
$bar + '123'
}
}
PS C:\> [Foo]::new().mymethod()
PS C:\> At line:4 char:11
+ $bar + '123'
Variable is not assigned in the method.