Public classes
|
JBoolean
Class to store boolean value in JSON format. Once JBoolean instance is created, its value can't be changed. Constructors
Methods
Constructors public JBoolean (bool boolValue) Creates new instance of JBoolean class.
Methods public bool AsBool () Get value of this JSON boolean as c# system bool.
public override bool Equals (object anotherObject) Test if another object equals to this object. Always returns false if parameter object is null or it is not instance of JBoolean. Two JBoolean objects are equal if both contains same boolean value.
public override string ToString () Returns compact information of this JBoolean object as string, for debug purposes.
|