Aan
Aan

Reputation: 12910

What are the equivalent methods of the following native API functions?

I am looking for the equivalent methods (in .Net) of the following WinAPI:

Upvotes: 0

Views: 509

Answers (2)

Richard Schneider
Richard Schneider

Reputation: 35477

For .NET 4.0 developers, the interesting classes that work with memory-mapped files live in the new System.IO.MemoryMappedFiles namespace.

See this article: http://www.developer.com/net/article.php/3828586/Using-Memory-Mapped-Files-in-NET-40.htm

Upvotes: 2

David Heffernan
David Heffernan

Reputation: 613302

You can use those functions directly. The .net wrappers of the memory mapped file API were only introduced in .net 4.0.

Upvotes: 3

Related Questions