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

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

routes - Laravel 4 Wildcard Routing to Different Controllers -

cross browser - XSLT namespace-alias Not Working in Firefox or Chrome -