You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ProcessArgumentBuilder has a FromString helper and implicit conversion operator that makes it trivial to work with a single string but has no helpers for another common case of adding multiple strings, assuming they should be handled homogeneously - either all naked or all quoted. Also, the single string case could use a helper that quotes its argument too, so overall I propose the following additional helpers:
FromStringQuoted
FromStrings
FromStringsQuoted
ToProcessArguments (extension)
The text was updated successfully, but these errors were encountered:
ProcessArgumentBuilder
has a FromString helper and implicit conversion operator that makes it trivial to work with a single string but has no helpers for another common case of adding multiple strings, assuming they should be handled homogeneously - either all naked or all quoted. Also, the single string case could use a helper that quotes its argument too, so overall I propose the following additional helpers:FromStringQuoted
FromStrings
FromStringsQuoted
ToProcessArguments
(extension)The text was updated successfully, but these errors were encountered: