Are there corresponding functions in C# as MFC CFile:ReadHuge and WriteHuge?

  • Thread starter Thread starter jeff
  • Start date Start date
J

jeff

Hi,
Are there corresponding functions in C# as MFC CFile:ReadHuge and WriteHuge? I can't find something in C# that can read or write bigger than int size of data.

Thanks,

-jeff
 
The Seek method take Longs, so I assume you can write anywhere in a 2^64 byte file (!) as long as you "restrict" yourself to writing 2^32 bytes at a time.

mike

Hi,
Are there corresponding functions in C# as MFC CFile:ReadHuge and WriteHuge? I can't find something in C# that can read or write bigger than int size of data.

Thanks,

-jeff
 
Back
Top