C# Класс fNbt.NbtInt

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

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

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

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

NbtInt ( [ tagName ) : System

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

NbtInt ( [ tagName, int value ) : System

Creates an NbtInt tag with the given name and value.

NbtInt ( int value ) : System

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

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

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

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

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

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

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

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

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