C# 클래스 fNbt.NbtString

A tag containing a single string. String is stored in UTF-8 encoding.
상속: NbtTag
파일 보기 프로젝트 열기: fragmer/fNbt 1 사용 예제들

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