MQTTPipeLineTests test 중

This commit is contained in:
김형인
2025-06-10 01:09:36 +09:00
parent ac3645577a
commit 649a359ab4
14 changed files with 886 additions and 70 deletions

View File

@@ -60,12 +60,12 @@ namespace UVC.Json
/// <code>
/// // 단일 객체 역직렬화
/// string userJson = "{\"Id\":1,\"Name\":\"홍길동\"}";
/// User user = JsonHelper.FromJson&lt;User&gt;(userJson);
/// User user = JsonHelper.FromJson<User>(userJson);
/// Debug.Log($"사용자 정보: {user.Id}, {user.Name}");
///
/// // 컬렉션 역직렬화
/// string arrayJson = "[{\"Id\":1,\"Name\":\"홍길동\"},{\"Id\":2,\"Name\":\"김철수\"}]";
/// List&lt;User&gt; users = JsonHelper.FromJson&lt;List&lt;User&gt;&gt;(arrayJson);
/// List<User> users = JsonHelper.FromJson<List<User>>(arrayJson);
/// foreach(var u in users) {
/// Debug.Log($"사용자 정보: {u.Id}, {u.Name}");
/// }