TarInputStream.Skip Method

Skip bytes in the input buffer. This skips bytes in the current entry's data, not the entire archive, and will stop at the end of the current entry's data if the number to skip extends beyond that point.

[Visual Basic]
Public Sub Skip( _
   ByVal numToSkip As Integer _
)
[C#]
public void Skip(
   int numToSkip
);

Parameters

numToSkip

The number of bytes to skip.

See Also

TarInputStream Class | TarInputStream Members | ICSharpCode.SharpZipLib.Tar Namespace