IsolatedStorageException: Unable to create the store directory

后端 未结 5 1112
隐瞒了意图╮
隐瞒了意图╮ 2021-01-19 04:08

Hi I have to store some hidden information in Isolated space. For that I am using System.IO.Isolated class like

IsolatedStorageFile isf =     System.IO.Isola         


        
5条回答
  •  滥情空心
    2021-01-19 04:32

    I changed IsolatedStorage file to

    using (IsolatedStorageFile isoStore = IsolatedStorageFile.GetMachineStoreForAssembly()) { }

    And this work.

提交回复
热议问题