JSONObject.JSONObject C# (CSharp) Method

JSONObject() public method

public JSONObject ( Type t ) : System.Diagnostics
t Type
return System.Diagnostics
	public JSONObject(Type t)
	{
		type = t;
		switch (t)
		{
			case Type.ARRAY:
				list = new List<JSONObject>();
				break;
			case Type.OBJECT:
				list = new List<JSONObject>();
				keys = new List<string>();
				break;
		}
	}
	public JSONObject(bool b)

Same methods

JSONObject::JSONObject ( ) : System.Diagnostics
JSONObject::JSONObject ( AddJSONConents content ) : System.Diagnostics
JSONObject::JSONObject ( JSONObject>.Dictionary dic ) : System.Diagnostics
JSONObject::JSONObject ( string>.Dictionary dic ) : System.Diagnostics
JSONObject::JSONObject ( JSONObject, objs ) : System.Diagnostics
JSONObject::JSONObject ( bool b ) : System.Diagnostics
JSONObject::JSONObject ( double d ) : System.Diagnostics
JSONObject::JSONObject ( float f ) : System.Diagnostics
JSONObject::JSONObject ( string str, int maxDepth = -2, bool storeExcessLevels = false, bool strict = false ) : System.Diagnostics