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

android - Why am I getting the message 'Youractivity.java is not an activity subclass or alias' -

python - How do I create a list index that loops through integers in another list -

c# - “System.Security.Cryptography.CryptographicException: Keyset does not exist” when reading private key from remote machine -