Ternary operator in PowerShell

后端 未结 13 2105
忘掉有多难
忘掉有多难 2020-11-28 03:56

From what I know, PowerShell doesn\'t seem to have a built-in expression for the so-called ternary operator.

For example, in the C language, which supports the terna

13条回答
  •  半阙折子戏
    2020-11-28 04:29

    PowerShell currently doesn't have a native Inline If (or ternary If) but you could consider to use the custom cmdlet:

    IIf   
    See: PowerShell Inline If (IIf)

提交回复
热议问题