using (System.IO.IsolatedStorage.IsolatedStorageFile isf = System.IO.IsolatedStorage.IsolatedStorageFile.GetUserStoreForApplication())
            {
                if (isf.FileExists(fileName))
                {
                    using(System.IO.IsolatedStorage.IsolatedStorageFileStream fs = isf.OpenFile(fileName,FileMode.Open))
                    {
                        Trips = ReadTrips(fs);
                    }
                }
            }

相关文章:

  • 2021-12-23
  • 2021-07-11
  • 2022-02-21
  • 2021-07-15
  • 2022-12-23
  • 2022-12-23
  • 2022-02-10
  • 2021-10-05
猜你喜欢
  • 2021-12-18
  • 2021-05-27
  • 2022-12-23
  • 2021-07-28
  • 2021-11-27
  • 2021-07-23
相关资源
相似解决方案