c# - Project Properties Tab string Value is missing spaces -


in project settings, have following string value: "tracking service". white space in string important because use access windows service. when @ config file after installing application on pc, string value missing white space. looking @ debug folder, string value missing space in .config file.

is there way perserve white space settings tab in project properties? plan install application on multiple pcs , perfer string keep it's actual value having go in , modify each config file.

thanks help!

you can transform , settings.

split:

string [] variablename.split(new [] {'_'}); 

join:

string remerged_variable= string.join(" ", splitparts); 

will purpose?


Comments

Popular posts from this blog

sql - VB.NET Operand type clash: date is incompatible with int error -

SVG stroke-linecap doesn't work for circles in Firefox? -

python - TypeError: Scalar value for argument 'color' is not numeric in openCV -