I am trying to read a file of size 4GB using Readbyte().
for (ulong i = 0x00000000; i <= 0x44509221; i++)
{
value += br.ReadByte().ToString("X2");
value += " ";
}
I used the code above to display the data(hex). But couldn't read completely and showing error
Managed Debugging Assistant 'ContextSwitchDeadlock' has detected a problem in 'C:\Users\cylab 19\Documents\Visual Studio 2015\Projects\WindowsFormsApplication20\WindowsFormsApplication20\bin\Debug\WindowsFormsApplication20.vshost.exe'.
Kindly help me to solve this
for (ulong i = 0x00000000; i <= 0x44509221; i++)
{
value += br.ReadByte().ToString("X2");
value += " ";
}
I used the code above to display the data(hex). But couldn't read completely and showing error
Managed Debugging Assistant 'ContextSwitchDeadlock' has detected a problem in 'C:\Users\cylab 19\Documents\Visual Studio 2015\Projects\WindowsFormsApplication20\WindowsFormsApplication20\bin\Debug\WindowsFormsApplication20.vshost.exe'.
Kindly help me to solve this