0
我想存儲storagefile例如從filepicker將在的ApplicationData節省Conatiner以後使用。但我發現的唯一方法就是將序列化作爲解決方案。可以將StorageFile對象有效地存儲在應用程序數據中嗎?StorageFile在Appliaction數據保存在Windows通用應用程序
ApplicationDataContainer AppStorageSetting = ApplicationData.Current.LocalSettings;
AppStorageSetting .Values["File"] = storagefile;
您如何期望在沒有序列化的情況下工作? – stuartd