Heavy unicode supported monospace font?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi,

I'm in need for a monospace font to be used in a .net application able to
write subscripts numbers like in CO2 and H2O. Any suggestions on a suitable
font?

I use this syntax,
textbox.Text = String.Format("\u2082\u2083\u2084").ToString();
is this correct?

thanx
Jesper, DK
 
Jesper said:
Hi,

I'm in need for a monospace font to be used in a .net application
able to write subscripts numbers like in CO2 and H2O. Any suggestions
on a suitable font?


I use this syntax,
textbox.Text = String.Format("\u2082\u2083\u2084").ToString();
is this correct?

It seems a bit overkill:
- you supply a fixed string to String.Format, so why use String.Format?
- then you convert the string output to string

wouln't this be simpler:
textbox.Text = "\u2082\u2083\u2084";

Hans Kesting
 
Back
Top