I ve利用废弃储存创建了一个窗口电话7应用程序。 在这项申请中,i ve使用了一个叫作btnRead的纽扣吨、一个称为txtRead的正文锁和一个称为tWrite的文本箱。 如果在文本箱(txtWrite)上写一些东西,就在纽特(btnRead)上点击。 然后,案文24(txtRead)在文本箱中显示或节省了任何一字(所有文字都是在单张主食中创建的)。 现在我又创建了1.xaml页,并创建了一个称为tShow的文字锁。 但是,我希望正文锁(txtShow)能够显示在主食食箱上撰写的所有内容。 我也上载了我的项目
如下: private void button1_Click(object sender, RoutedEventArgs e)
{
IsolatedStorageFile myStore = IsolatedStorageFile.GetUserStoreForApplication();
myStore.CreateDirectory("Bookmark");
using (var isoFileStream = new IsolatedStorageFileStream("Bookmark\myFile.txt", FileMode.OpenOrCreate, myStore))
{
//Write the data
using (var isoFileWriter = new StreamWriter(isoFileStream))
{
isoFileWriter.WriteLine(txtWrite.Text);
}
}
try
{
// Specify the file path and options.
using (var isoFileStream = new IsolatedStorageFileStream("Bookmark\myFile.txt", FileMode.Open, myStore))
{
// Read the data.
using (var isoFileReader = new StreamReader(isoFileStream))
{
txtRead.Text = isoFileReader.ReadLine();
}
}
}
catch
{
// Handle the case when the user attempts to click the Read button first.
txtRead.Text = "Need to create directory and the file first.";
}
}
What is the use of default keyword in C#? Is it introduced in C# 3.0 ?