我需要類似於ReadToEnd或ReadAllBytes使用MappedViewAccessor讀取MemoryMappedFile的所有內容,如果我不知道大小它,我該怎麼做?我已經尋找它 ,我已經看到了這個問題,但它不是我要找的東西: How can I quickly read bytes from a memory mapped file in .NET? 編輯: 有一個問題, (int)s
在這個問題上, Read all contents of memory mapped file or Memory Mapped View Accessor without knowing the size of it 有一個問題,(int)stream.Length不給我正確的長度,它,而給人的大小使用內部緩衝區!我需要刷新這個問題,因爲它非常緊迫。 的主要問題是: 我需要類似的東西ReadTo
我想寫一種十六進制編輯器(用於編輯Playstation 1 ISO),但我不知道如何使用CreateViewAccessor.Read和Write。具體而言,我不知道第二個參數out T structure需要使用什麼。這是我到目前爲止的代碼: long offset = 0x0064773C;
long length = 0x02;
// Create the memory-mapped
我有一種感覺,我做錯了什麼,但我不知道是什麼。 這是我的代碼: long offset = 0x009694E3;
long length = 0x02;
byte[] bytes = new byte[length];
// Create the memory-mapped file.
using (var mmf =
Memor