powershell 获取Enum类型的所有可能值。回答问题“当类型不是kno时,如何获得Enum类型变量的所有可能值

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了powershell 获取Enum类型的所有可能值。回答问题“当类型不是kno时,如何获得Enum类型变量的所有可能值相关的知识,希望对你有一定的参考价值。

# Get all possible values of variable of dynamic Enum type
$VerbosePreference.gettype().GetEnumValues()

# or if you start with name of type in string and you need to cast to that type explicitly:
$String = 'System.Management.Automation.ActionPreference'
$Value = 'SilentlyContinue'
$Value -As ($string -As [Type])

以上是关于powershell 获取Enum类型的所有可能值。回答问题“当类型不是kno时,如何获得Enum类型变量的所有可能值的主要内容,如果未能解决你的问题,请参考以下文章

java枚举类型

java枚举类型

枚举类型enum

mysql中使用enum,如何获取所有可能的值

enum在java中是啥意思

如何快速检查Enum和Bounded类型的所有可能情况?