Alexandre Lecoq
Alexandre Lecoq
IMHO, from a code perspective, this is better done outside ParseCommandLine as in the example. For the scheduling use case, this could also be done by generating bat files or...
What's the use case exactly ? And would that work ?
Well, that doesn't sound like a question directly related to this package. But you could have the user pass --fieldseparator "," --newline "\r\n" no ?
Maybe that should be done in https://github.com/j-maly/CommandLineParser/blob/40120ac02a670dae0ace4e21103d97be370ad46e/src/CommandLineArgumentsParser/CommandLineParser.cs#L595 Such that LookupArgument() should return a new instance of an Argument derived type if no argument is found ?
Would it be possible to, at least, merge the fixes and release a new version of the classic version ? We have a blocking issue with #772 in production, and...
@Bouke yes, it's here : https://github.com/MiniProfiler It works and it's maintained. We switched to it.
Hello, While investigating why the tick rate was slow in simulations, i stumbled on this class and noticed that propagationCompleted() which is often called was doing lots of work, so...
> If you run at high frequency and then change frequency to something very low (like .5Hz) the first displayed value is NaN. Not reproduced, but I removed the smoothing...
> By the way, you do not need to force-push an update. You can just add a commit to your branch when you address these suggestions. Yes, I forgot again,...
I removed all those big values completely and only kept a unique constant with thousands separators `static final int NANOSECONDS_PER_SECONDS = 1_000_000_000;` Does that address the issue ? I'm not...