Naresh
Naresh

Reputation: 643

How to save own project file?

I am working on vs2010, .net 4.0 coding in C# WPF Application.

I am making a tool to process some data. It reads files and adds them to a stack, certain processing is done and some data is saved to the disk too. I need to save the current state of project in a file so I can open it again.

I would like to know how can I make a project file. One thing that I can think of is using xml and add all info to it. What other options are there?

Thanks in advance.

Cheers

Upvotes: 1

Views: 339

Answers (1)

hcb
hcb

Reputation: 8357

  1. Add values to the windows registry
  2. Isolated storage
  3. A database

I'd personally opt for the xml file, keep it simple

Upvotes: 1

Related Questions