Using Settings in C# we can assign a Set of Settings like ,Name ,Location ,Size etc. using Visual Studio and chose at which Scope it should be (Application/User).
My Question is ,can i use a Set of Settings separately for each user . Like i would Save User's like User1,User2,User3 where every user have same Attributes like Name ,Surname , Department .
So using Settings is it possible to save Name ,Surname and Department for User1 than the same thing for User2 .
Or is it better to create an Object User with those Fields/Properties and Serialize/Deserialize into XML .
Note : Attributes in this question are just Examples .