C# 7 added some new features with a focus on code simplification and performance. This post explains C# 7 new features Binary Literals We now have binary literals like 0b followed by 0’s and 1’s; literals can often get longer so you can add underscore to separate them as shown in above screenshot. Tuples Install-Package “System.ValueTuple” One...