Parse the checksum octal integer from a header buffer.
[Visual Basic]
Public Shared Function GetCheckSumOctalBytes( _
   ByVal val As Long, _
   ByVal buf As Byte(), _
   ByVal offset As Integer, _
   ByVal length As Integer _
) As Integer
[C#]
public static int GetCheckSumOctalBytes(
   long val,
   byte[] buf,
   int offset,
   int length
);
Parameters
val
buf
The header buffer from which to parse.
offset
The offset into the buffer from which to parse.
length
The number of header bytes to parse.
Return Value
The integer value of the entry's checksum.
See Also
TarHeader Class | TarHeader Members | ICSharpCode.SharpZipLib.Tar Namespace