Monday, January 15, 2018

pattern matching in C# 7.0

This is something else that is sevenesque. You can do some tricks with the is keyword that you might expect of the == operator as suggested here. An example:

if (o is "o") {

No comments:

Post a Comment