Hello everybody,
today I want to describe one new feature of C# that I discovered today. At MSDN it is named Type pattern. It looks like this:
expr is type varname
such code gives you to shorter your code.
Take a look at the following code:
using System;
public class Student...