Reputation: 1854
Is it possible to save some fields in the program, or do I have to write them to a file?
Example:
Thanks
Upvotes: 0
Views: 1866
Reputation: 192437
See also
How to decide where to store per-user state? Registry? AppData? Isolated Storage?
Upvotes: 2
Reputation: 19790
You can use for example the settings file to store the paths to those files(see here)
Then on startup, lookup the path in settings and create a fileinfo
Upvotes: 5
Reputation: 292
you have to put it into a file somwhere... usually you use the configfile for such things. .net manages the work around this configfile very good.
Upvotes: 0