C# Класс fNbt.NbtDouble

A tag containing a double-precision floating point number.
Наследование: NbtTag
Показать файл Открыть проект Примеры использования класса

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

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

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

NbtDouble ( [ tagName ) : System

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

NbtDouble ( [ tagName, double value ) : System

Creates an NbtDouble tag with the given name and value.

NbtDouble ( double value ) : System

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

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

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

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

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

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

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

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

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