wpf - How to write half-space in c# -
how can write half-space
character in c# in textbox
(not console.writleline
statement) ? there specific char code it?
unicode thinspace u+2009 ordinary character, try:
textbox.text += '\u2009';
how can write half-space
character in c# in textbox
(not console.writleline
statement) ? there specific char code it?
unicode thinspace u+2009 ordinary character, try:
textbox.text += '\u2009';
Comments
Post a Comment