fNbt.NbtBinaryReader.ReadInt16 C# (CSharp) 메소드

ReadInt16() 공개 메소드

public ReadInt16 ( ) : short
리턴 short
        public override short ReadInt16()
        {
            if (swapNeeded) {
                return Swap(base.ReadInt16());
            } else {
                return base.ReadInt16();
            }
        }

Usage Example

예제 #1
0
파일: NbtShort.cs 프로젝트: johndpalm/fNbt
 internal override bool ReadTag(NbtBinaryReader readStream)
 {
     if (readStream.Selector != null && !readStream.Selector(this)) {
         readStream.ReadInt16();
         return false;
     }
     Value = readStream.ReadInt16();
     return true;
 }
All Usage Examples Of fNbt.NbtBinaryReader::ReadInt16