JSONObject.StringObject C# (CSharp) 메소드

StringObject() 공개 정적인 메소드

public static StringObject ( string val ) : JSONObject,
val string
리턴 JSONObject,
	public static JSONObject StringObject(string val) { return CreateStringObject(val); }
	public void Absorb(JSONObject obj)

Usage Example

예제 #1
0
    public void OnOpen(SocketIOEvent e)
    {
        Debug.Log("[SocketIO] Open(): " + e.data);

        socket.Emit("joinRoom", JSONObject.StringObject(roomNumber));         //방번호
        // sendConnect();
    }
All Usage Examples Of JSONObject::StringObject