Alexandria.Engines.Sciagi.Resources.PictureInstruction.Skip C# (CSharp) Method

Skip() protected static method

Skip a number of bytes in the stream.
protected static Skip ( Stream stream, int count = 1 ) : void
stream Stream
count int
return void
        protected static void Skip(Stream stream, int count = 1)
        {
            stream.Seek(count, SeekOrigin.Current);
        }