Guest User

Untitled

a guest
Jun 18th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.50 KB | None | 0 0
  1.       using (IsolatedStorageFile storeForApplication = IsolatedStorageFile.GetUserStoreForApplication())
  2.       {
  3.         using (IsolatedStorageFileStream storageFileStream = new IsolatedStorageFileStream(str, FileMode.Create, storeForApplication))
  4.         {
  5.           using (StreamWriter streamWriter = new StreamWriter((Stream) storageFileStream))
  6.             streamWriter.WriteLine("[...] and the number of the counting shall be three.");
  7.         }
  8.         storeForApplication.DeleteFile(str);
  9.       }
Add Comment
Please, Sign In to add comment