facebook twitter hatena line email

Windows/powershell/クラス

提供: 初心者エンジニアの簡易メモ
2021年8月23日 (月) 16:07時点におけるAdmin (トーク | 投稿記録)による版 (ページの作成:「==サンプル== hello.ps1 <pre> class HelloClass { [string] hello() { return "Hello!!" } } $helloObj = New-Object HelloClass $helloObj.hello() </pre>」)

(差分) ←前の版 | 最新版 (差分) | 次の版→ (差分)
移動: 案内検索

サンプル

hello.ps1

class HelloClass {
    [string] hello() {
        return "Hello!!"
    }
}
$helloObj = New-Object HelloClass
$helloObj.hello()