csharpier
csharpier copied to clipboard
Ref Conditional does not format consistently
ref Behavior behavior = ref (this.returnOrThrow == null)
? ref this.callback
: ref this.afterReturnCallback;
// vs (with added __ to get it to the same length
Behavior behavior =
(this.returnOrThrow____________________ == null)
? this.callback
: this.afterReturnCallback;