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
Post a Comment