wp/silverlight 中使用IsolatedStorageSettings中,为何频繁抛出 Operation not permitted on IsolatedStorageFileStream 异常?
IsolatedStorageSettings _isolatedStorageSettings = IsolatedStorageSettings.ApplicationSettings;
这句代码在静态构造方法里面,运行时频繁会抛出“类型初始化错误”,然后调试查看内部异常就是:Operation not permitted on IsolatedStorageFileStream
何故??
创建文件时 首先检查文件所在的目录是否存在 如果不存在会引发Operation not permitted on IsolatedStorageFileStream 异常。???
给你具体参考;http://www.cnblogs.com/boypig/archive/2011/10/20/2218990.html