Readfile

[DllImport("Kernel32.dll", SetLastError = true)][return: MarshalAs(UnmanagedType.Bool)]
public static extern bool ReadFile(IntPtr hFile,
   [Out] byte[] lpBuffer,
   uint nNumberOfBytesToRead,
   out uint lpNumberOfBytesRead,
   IntPtr lpOverlapped
);

Microsoft documentation: Link

Last updated