I was just checking a code snippet. At the top of his class this guy had his namespaces like:
using System;
using System.Text;
but then he did something I've never seen before:
using input = System.Char;
Later on he declares a variable:
public input? data;
So I was wondering, why doesn't he just make a char variable? instead of saving System.char into input and then using input as type.
Note, it was a fairly old code snippet.