How can I read the last x bytes from a binary file or is there a way to determine how many bytes are in the file?
I could then at least try something like:
File.ReadAllBytes(file).Skip(Size-25).Take(25).ToArray();
How can I read the last x bytes from a binary file or is there a way to determine how many bytes are in the file?
I could then at least try something like:
File.ReadAllBytes(file).Skip(Size-25).Take(25).ToArray();