SDK 7.1 を使用して Windows Phone 用のシンプルなアプリを開発していますが、エラーが発生しています。
IsolatedStorageException が処理されませんでした:IsolatedStorageFileStream での操作は許可されていません
内部MainPage.xaml.cs
コードスニペット:
private void btnRd_file_Click(オブジェクト送信者, RoutedEventArgs e)
{ IsolatedStorageFile ISF = IsolatedStorageFile.GetUserStoreForApplication(); IsolatedStorageFileStream FS = ISF.OpenFile("pwd1.txt", FileMode.Open, FileAccess.Read); using (StreamReader SR = new StreamReader(FS))
Windows Phone エミュレーターでアプリケーションを実行しようとしているとき。