Imports System.Collections.Generic
Dim Json as string = "{Name: 'pepe', LastName: 'Arias'}"
Dim Person as Person = JsonConvert.DeserializeObject(Of Person)(Json)
Dim Persons as List(of Person) = new List(Of Person)
Console.WriteLine(Persons.Count)
Private _LastName As String
Public Property Name() As String
Set(ByVal value As String)
Public Property LastName() As String
Set(ByVal value As String)