Alexandria.Engines.Sciagi.Resources.PictureInstruction.Skip C# (CSharp) 메소드

Skip() 보호된 정적인 메소드

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