csharpier icon indicating copy to clipboard operation
csharpier copied to clipboard

Ref Conditional does not format consistently

Open belav opened this issue 4 years ago • 0 comments

        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;

belav avatar Aug 23 '21 15:08 belav