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 - ScrollTo Effect (href to div) -

javascript - ng-class not responding to change in model in Angular? -

javascript - document.registerElement extending HTMLInputElement prototype while using custom tag name to avoid implicit browser style -