Home »

Explain memory- mapped files.

Question ListCategory: .NETExplain memory- mapped files.
adamemliy16 author asked 9 years ago
1 Answers
jeanderson295 author answered 8 years ago

Memory- mapped files (MMFs) allow you map the content of a file to the logical address of an application. These files enable the multiple processes running on the same machine to share data with each Other. The MemoryMappedFile.CreateFromFile() method is used to obtain a MemoryMappedFile object that represents a persisted memory- mapped file from a file on disk. These files are included in the System.IO.MemoryMappedFiles namespace. This namespace contains four classes and three enumerations to help you access and secure your file mappings.

Please login or Register to Submit Answer