File is too large to read into a byte array
The size of the file you are attempting to read into a byte array exceeds 4 GB. The My.Computer.FileSystem.ReadAllBytes method cannot read a file that exceeds this size.
To correct this error
- Use a StreamReader to read the file. For more information, see Basics of .NET Framework File I/O and the File System.
See Also
Tasks
How to: Read Text from Files with a StreamReader (Visual Basic)
Reference
My.Computer.FileSystem.ReadAllBytes Method