C# Класс fNbt.NbtLong

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

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

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

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

NbtLong ( [ other ) : System

Creates a copy of given NbtLong tag.

NbtLong ( long value ) : System

Creates an unnamed NbtLong tag with the given value.

NbtLong ( string tagName ) : System

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

NbtLong ( string tagName, long value ) : System

Creates an NbtLong tag with the given name and 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

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

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

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

Creates a copy of given NbtLong tag.
is null.
public NbtLong ( [ other ) : System
other [ Tag to copy. May not be null.
Результат System

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

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

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

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

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

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