我在Windows应用程序中使用反射获取文件路径但是没有进入Silverlight。
我使用的代码如下:
IsolatedStorageFile store = IsolatedStorageFile.GetStore(IsolatedStorageScope.User | IsolatedStorageScope.Assembly, null, null);
IsolatedStorageFileStream stream = new IsolatedStorageFileStream("Text.log", FileMode.Create, store);
// Retrieve the actual path of the file using reflection.
string path = stream.GetType().GetField("m_FullPath", BindingFlags.Instance | BindingFlags.NonPublic).GetValue(stream).ToString();
Silverlight不支持私有,受保护和内部(程序集外)反射
让我知道如何在silverlight中获取文件路径。