This method is an alternative for the Stream.Skip()-method that doesn't seem to work properly for big values of size.

Namespace: iTextSharp.text
Assembly: ITextSharp (in ITextSharp.dll) Version: 4.1.6.0

Syntax

C#
public static void Skip(
	Stream istr,
	int size
)
Visual Basic
Public Shared Sub Skip ( _
	istr As Stream, _
	size As Integer _
)
Visual C++
public:
static void Skip(
	Stream^ istr, 
	int size
)

Parameters

istr
Type: System.IO..::..Stream
the stream
size
Type: System..::..Int32
the number of bytes to skip

See Also