I have to open a log file created by c++, which is 4G in size.
I want to read it from C#, but FileStream.Read uses int as offset, that means I can not read bigger than 2G. I believe C# should have a solution for it.
How can I read a binary file which is bigger than 2G?
I really appreciate your help.
Laurence