roslynator icon indicating copy to clipboard operation
roslynator copied to clipboard

RCS1260 - Add support for patterns

Open glen-84 opened this issue 5 months ago • 0 comments

if (argument is { Prop: 123, }) // should be an issue when using the `omit` option
{
    // ...
}

var x = argument switch
{
    _ => "Unknown", // should be an issue when using the `omit` option
};

glen-84 avatar Jun 03 '25 15:06 glen-84