C# Класс fNbt.NbtShort

A tag containing a single signed 16-bit integer.
Наследование: NbtTag
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
Clone ( ) : object
NbtShort ( ) : System

Creates an unnamed NbtShort tag with the default value of 0.

NbtShort ( [ tagName ) : System

Creates an NbtShort tag with the given name and the default value of 0.

NbtShort ( [ tagName, short value ) : System

Creates an NbtShort tag with the given name and value.

NbtShort ( short value ) : System

Creates an unnamed NbtShort tag with the given value.

Приватные методы

Метод Описание
PrettyPrint ( StringBuilder sb, string indentString, int indentLevel ) : void
ReadTag ( NbtBinaryReader readStream ) : bool
SkipTag ( NbtBinaryReader readStream ) : void
WriteData ( NbtBinaryWriter writeStream ) : void
WriteTag ( NbtBinaryWriter writeStream ) : void

Описание методов

Clone() публичный Метод

public Clone ( ) : object
Результат object

NbtShort() публичный Метод

Creates an unnamed NbtShort tag with the default value of 0.
public NbtShort ( ) : System
Результат System

NbtShort() публичный Метод

Creates an NbtShort tag with the given name and the default value of 0.
public NbtShort ( [ tagName ) : System
tagName [ Name to assign to this tag. May be null.
Результат System

NbtShort() публичный Метод

Creates an NbtShort tag with the given name and value.
public NbtShort ( [ tagName, short value ) : System
tagName [ Name to assign to this tag. May be null.
value short Value to assign to this tag.
Результат System

NbtShort() публичный Метод

Creates an unnamed NbtShort tag with the given value.
public NbtShort ( short value ) : System
value short Value to assign to this tag.
Результат System