Thanks. What I meant, though, was what format do you choose to store it in?
For example, if I were collecting website, username, and password, then I could store it like
Code:
website1,username1,password1
website2,username2,password2
website3,username3,password3
or
Code:
<site>
<url>website1</url>
<username>username1</username>
<password>password1</password>
</site>
<site>
<url>website2</url>
<username>username2</username>
<password>password2</password>
</site>
<site>
<url>website3</url>
<username>username3</username>
<password>password3</password>
</site>
or any other number of ways. Which do most of you store your data in for ease of access via C#?
Does that make more sense?