2011-06-21 44 views

回答

15

IsolatedStorageFileSystem有寫字節數組的方法:

public override void Write(byte[] buffer, int offset, int count); 

可以使用如下:

byte[] myByteArray = ... 
    using (var store = IsolatedStorageFile.GetUserStoreForApplication()) 
    using (var stream = new IsolatedStorageFileStream("filename.txt", 
       FileMode.Create, FileAccess.Write, store)) 
    { 
     stream.Write(myByteArray, 0, myByteArray.Length); 
    } 
+0

我可以使用IsolatedStorageFile在Windows文件中的窗體應用程序寫入和讀取它後來? – Kiquenet