VB.NET
VB.NET
JSON Append String Array
See more JSON Examples
Demonstrates how to append an array of strings from a string table object.Note: This example uses the AppendStringTable method, which was introduced in Chilkat v9.5.0.67
Chilkat VB.NET Downloads
Dim json As New Chilkat.JsonObject
json.EmitCompact = False
json.AppendString("abc","123")
Dim st As New Chilkat.StringTable
st.Append("a")
st.Append("b")
st.Append("c")
st.Append("d")
json.AppendStringArray("strArray",st)
Debug.WriteLine(json.Emit())
' Output:
' {
' "abc": "123",
' "strArray": [
' "a",
' "b",
' "c",
' "d"
' ]
' }