• Lmaydev
    link
    fedilink
    arrow-up
    9
    ·
    edit-2
    10 months ago

    It has a not keyword it’s used for pattern matching.

    if (x is not null)
    
          • Lmaydev
            link
            fedilink
            arrow-up
            1
            ·
            edit-2
            10 months ago

            The type matching is the most common thing I use it with. Combined with inline variables.

            if (x is string { Length: 5} s)
            {
                // do stuff with s
            }
            

            And switch expressions.

            As a side note inline variables are amazing haha