SkipVInt32() 공개 메소드

public SkipVInt32 ( ) : void
리턴 void
예제 #1
0
 internal static void SkipHeader(AbstractBufferedReader reader)
 {
     FileCollectionWithFileInfos.SkipHeader(reader);
     reader.SkipUInt8(); // type of file
     reader.SkipVInt64(); // generation
     reader.SkipVInt32(); // previous file id
 }
예제 #2
0
 internal static void SkipHeader(AbstractBufferedReader reader)
 {
     reader.SkipBlock(FileCollectionWithFileInfos.MagicStartOfFile.Length + 1); // magic + type of file
     reader.SkipVInt64(); // generation
     reader.SkipVInt32(); // previous file id
 }