C# 클래스 fNbt.NbtLong

A tag containing a single signed 64-bit integer.
상속: NbtTag
파일 보기 프로젝트 열기: fragmer/fNbt 1 사용 예제들

공개 메소드들

메소드 설명
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