2021-08-16から1日間の記事一覧

VB.net Listに格納されている文字列をカンマ区切りで連結

Dim list As New ArrayList list.Add("A") list.Add("B") String.join(",",list.ToArray()); ネタ元 ameblo.jp

vb.netでJSONを分解 Json.NET Newtonsoft.Json

サンプルjson { "14": [ { "328": "1301", "332": "名前" }, { "328": "1305", "332": "名前" } ], "173": "", "174": "0", "175": "2", "176": "2021.08.16-20:50:28.087", "177": "2021.08.16-20:50:28.217", "192": "hogeData" } 分解サンプルnugetから"N…