F# Study Today (Pattern Matching)
F# Review Today I encountered pattern matching for the first time. C# has it too, but I felt this is a feature characteristic of F#. F# Pattern Matching This is amazing. I thought C#’s switch expression pattern matching was similar, but this feature probably went from F# to C#. match Expression I think the match expression will be used often, so I need to remember it well. Also, it seems there are different kinds of patterns like or patterns and as patterns, so I need to memorize these properly too. ...