In C#; I understand that numbers are different to signs... As I understand it, a byte conversion to an int is possible because the int type can read all of the byte binary compilation. However, why can't type char be as easily converted to string in the same way? Example:
char c = 'a';
string asdf = c; <== why do I have to use a ToString-method here?