I'm trying the following code:
string text = "";
char c = 'd';
text += "abc" & c.ToString();
..but it returns an error 'Operator '&' cannot...' . It don't works even without ToString(). What's the problem converting char to string?
I'm trying the following code:
string text = "";
char c = 'd';
text += "abc" & c.ToString();
..but it returns an error 'Operator '&' cannot...' . It don't works even without ToString(). What's the problem converting char to string?