1

あるクラスから別のクラスにアクセスできません。クラスは異なるファイルで定義されます。

#foo.ps1
Class Foo { static [string]$data }
#bar.ps1
using module ".\foo.ps1"
class Bar {
    Bar() {
        [Foo]::data="test" #not working
    }
}
[Foo]::data="test" #works
4

1 に答える 1