I’m working on a code to write into isolated storage the username and password.
I wrote the code but I have to read password to Passwordtext from file and username from the same file to another textbox.
Is there any way to retrieve these specific values from a file?
I’m working on a code to write into isolated storage the username and password.
Share
You could create an object to hold the data you’re after and serialize it and write it to a file. Then read out and deserialize to access the data.
Alternatively you could store these in
IsolatedStorageSettingshttp://msdn.microsoft.com/en-us/library/cc221360(v=vs.95).aspx