Ingmar Bitter

Results 12 comments of Ingmar Bitter

I find that **params** has constraints that are not useful in practice, namely that it has to be at the end of the parameter list, which eliminates the possibility of...

@DanFTRX your example would be: ```CSharp public void Foo() { Bar(true, false); // same as {true}, false Bar(false); // same as {false}, true } public void Bar(multi IEnumerable boolSet, bool...