C# 클래스 IronJSON.IronJSONValue

파일 보기 프로젝트 열기: jabb/IronJSON 1 사용 예제들

공개 메소드들

메소드 설명
IronJSONValue ( IronJSONObject o ) : System

Constructor.

IronJSONValue ( ValueType type ) : System

Constructor.

IronJSONValue ( bool b ) : System

Constructor.

IronJSONValue ( double f ) : System

Constructor.

IronJSONValue ( long i ) : System

Constructor.

IronJSONValue ( string str ) : System

Constructor.

ToString ( ) : string

Converts this value to a string to be written out to a JSON file.

ToString ( int indentLevel ) : string

Converts this value to a string to be written out to a JSON file.

메소드 상세

IronJSONValue() 공개 메소드

Constructor.
public IronJSONValue ( IronJSONObject o ) : System
o IronJSONObject /// A ///
리턴 System

IronJSONValue() 공개 메소드

Constructor.
public IronJSONValue ( ValueType type ) : System
type System.ValueType /// A ///
리턴 System

IronJSONValue() 공개 메소드

Constructor.
public IronJSONValue ( bool b ) : System
b bool /// A ///
리턴 System

IronJSONValue() 공개 메소드

Constructor.
public IronJSONValue ( double f ) : System
f double /// A ///
리턴 System

IronJSONValue() 공개 메소드

Constructor.
public IronJSONValue ( long i ) : System
i long /// A ///
리턴 System

IronJSONValue() 공개 메소드

Constructor.
public IronJSONValue ( string str ) : System
str string /// A ///
리턴 System

ToString() 공개 메소드

Converts this value to a string to be written out to a JSON file.
public ToString ( ) : string
리턴 string

ToString() 공개 메소드

Converts this value to a string to be written out to a JSON file.
public ToString ( int indentLevel ) : string
indentLevel int /// A which indicates the indentation /// level to use. ///
리턴 string