C# Класс fNbt.NbtByte

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

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

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

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

NbtByte ( [ tagName ) : System

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

NbtByte ( [ tagName, byte value ) : System

Creates an NbtByte tag with the given name and value.

NbtByte ( byte value ) : System

Creates an unnamed NbtByte 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

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

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

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

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

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

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

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

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