-
Notifications
You must be signed in to change notification settings - Fork 48
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Possible bug in IOStream #10
Comments
Let's take another look at the method in question:
So the correct method should read:
Does that look correct to you??? |
Yes, that looks correct. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi,
Just checking the code, I see on https://github.com/csharptest/CSharpTest.Net.Collections/blob/master/src/CSharpTest.Net.Collections/IO/IOStream.cs#L68 that you are initializing bytesRead with 0. I believe the correct value should be "offset". Without that, the offset argument is meaningless in the context of that method.
The text was updated successfully, but these errors were encountered: