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'; 

Comments

Popular posts from this blog

javascript - How to synchronize the Three.js and HTML/SVG coordinate systems (especially w.r.t. the y-axis)? -

javascript - How do I find how many occurences are there of a highlighted string, and which occurence is it? -

java - Reading data from multiple zip files and combining them to one -