J
julio
How do I display a Unicode character? I tried
TextBox1.Text = new string('\u266D',1);
and also
char c = '\u266D';
TextBox1.Text = c.ToString();
Neither works (it should display a "double flat", something like two 'b's,
one partially overlapping the other. I just get a rectangle.
Thnaks
TextBox1.Text = new string('\u266D',1);
and also
char c = '\u266D';
TextBox1.Text = c.ToString();
Neither works (it should display a "double flat", something like two 'b's,
one partially overlapping the other. I just get a rectangle.
Thnaks