C# Класс fNbt.NbtString

A tag containing a single string. String is stored in UTF-8 encoding.
Наследование: NbtTag
Показать файл Открыть проект Примеры использования класса

Private Properties

Свойство Тип Описание
PrettyPrint void
ReadTag bool
SkipTag void
WriteData void
WriteTag void

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

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

Creates an unnamed NbtString tag with the default value (empty string).

NbtString ( [ value ) : System

Creates an unnamed NbtString tag with the given value.

NbtString ( [ tagName, [ value ) : System

Creates an NbtString 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

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

Creates an unnamed NbtString tag with the default value (empty string).
public NbtString ( ) : System
Результат System

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

Creates an unnamed NbtString tag with the given value.
is null.
public NbtString ( [ value ) : System
value [ String value to assign to this tag. May not be null.
Результат System

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

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