using System.IO;
using System.IO.IsolatedStorage;
private void button1_Click(object sender, EventArgs e)
{
this.Text = textBox1.Text;
IsolatedStorageFile f = IsolatedStorageFile.GetMachineStoreForDomain();
IsolatedStorageFileStream i = new IsolatedStorageFileStream("co.col", System.IO.FileMode.Create, f);
StreamWriter sw = new StreamWriter(i);
sw.Write(this.Text);
sw.Flush();
sw.Close();
}
private void Form1_Load(object sender, EventArgs e)
{
IsolatedStorageFile f1 = IsolatedStorageFile.GetMachineStoreForDomain();
IsolatedStorageFileStream i1 = new IsolatedStorageFileStream("co.col", FileMode.Open, f1);
StreamReader sr = new StreamReader(i1);
this.Text = sr.ReadToEnd();
sr.Close();
}
Courtesy : Saji P Babu, IndiaOptions, Kochi.
Related Blog
System.IO Namespace in .Net
Showing posts with label Isolated Storage. Show all posts
Showing posts with label Isolated Storage. Show all posts
Friday, December 12, 2008
Isolated Storage (Code Snippets)
Labels:
C#,
Framework,
Isolated Storage,
Shalvin
Subscribe to:
Posts (Atom)