How do I avoid a space when I add an argument? #284
-
|
I'm playing a bit with CliWrap and I have an issue with the arguments. No matter what I tried, I get an unexpected space in the arguments. The syntax of I tried it with but I always get an unwanted space. Is there any way to configure (Overload like AddWithOutSpace) if I want a space added or not? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
.Add("/Tests:", false)
.Add(cmdArg.UiTest)This should be as part of one .Add("/Tests:" + cmdArg.UiTest) |
Beta Was this translation helpful? Give feedback.
This should be as part of one
Add, since it's a single argument, not two: