Skip to content

Instantly share code, notes, and snippets.

@grab-a-byte
Created April 1, 2020 20:09
Imports Newtonsoft.Json
Module Program
Sub Main(args As String())
Dim numbers = New Integer() {1, 2, 4, 8}
Dim serializeResult = JsonConvert.SerializeObject(numbers)
Console.WriteLine(serializeResult)
Console.ReadKey()
End Sub
End Module
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment