c# - Equivalent of MappedBytesBuffer for .NET? -
I am planning to port an application from Java to Net. This application makes a huge use of the NIO package which is not fully present in the NAT.
One of the important differences, which is difficult to repeat on NAT, is MapBitsBuffer, because it is used to reach a different part of a file.
Can someone help me find an option to repeat the function? Thank you very much
If you If you can wait for 4.0, this can be useful:
Alternatively, you can roll your cover for Win32 apis CreateFileMapping and MapViewOfFile
Comments
Post a Comment