[vb.net] JSON Example
하나를하더라도최선을
2023-04-09 16:05:34
32,793
0
0
Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
Dim jo As Object = New With {Key .list = {"foo", "bar"}, Key .data = "string"}
RichTextBox1.Text = JsonConvert.SerializeObject(jo)
End Sub