Write an archive record to the archive, where the record may be inside of a larger array buffer. The buffer must be "offset plus record size" long.
[Visual Basic]
Overloads Public Sub WriteRecord( _
   ByVal buf As Byte(), _
   ByVal offset As Integer _
)
[C#]
public void WriteRecord(
   byte[] buf,
   int offset
);
Parameters
buf
The buffer containing the record data to write.
offset
The offset of the record data within buf.
See Also
TarBuffer Class | TarBuffer Members | ICSharpCode.SharpZipLib.Tar Namespace | TarBuffer.WriteRecord Overload List