How to return several items from a Powershell function

前端 未结 3 1974
有刺的猬
有刺的猬 2020-12-29 22:41

In a script I have several functions that need to break down an SVN external definition. These can either be , -r

3条回答
  •  青春惊慌失措
    2020-12-29 23:38

    You can return an array of [string] and then let the caller split it or return a custom object and always the caller do the split.

提交回复
热议问题