According to Msdn :
Memory-mapped files enable programmers to work with extremely large files because memory can be managed concurrently, and they allow complete, random access to a file without the need for seeking
question :
the whole principle of Memory Mappe File is to write/read bytes , and create views by location and offset.
What does it mean "NO need for seeking" ?
I MUST know the start and the end ( offsets) in order to read a file.
So seeking DOES EXISTS !
I Do seek in this huge array of bytes....
What am i missing ?