gpt4 book ai didi

powershell - 如何在powershell中创建只读成员?

转载 作者:行者123 更新时间:2023-12-04 17:56:52 24 4
gpt4 key购买 nike

使用 Add-Member 时如何将成员设为只读Powershell 中的 cmdlet?

基本上,我想将成员添加到 System.Diagnostic.Process它具有只读属性。

最佳答案

像这样:

 $p = new-object System.Diagnostics.Process
$p | Add-member -Name thisisreadonly -membertype scriptproperty -value { 6}
$p.thisisreadonly #gives 6
$p.thisisreadonly = 5 #error- Set accessor for property "thisisreadonly" is unavailable.

所以基本上你创建了一个 ScriptProperty,有一个 getter 但没有 setter。

关于powershell - 如何在powershell中创建只读成员?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6990282/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com