Json problem, why?

di il
3 risposte

Json problem, why?

Buongiorno a tutti, sono sempre io xD ebbene sto creando una piccola applicazione che permette di ricevere le informazioni e salva in formato json...

ho creato una classe con queste info


Imports System.Net
Imports Newtonsoft.Json

Public Class GetJson
    Public Property id As List(Of Integer)
    Public Property Name As List(Of String)
     Public Property Age As List(Of Integer)
    Public Property Oggi As String
End Class
e nella parte di salvataggio ho messo questi info


  Dim ListId As List(Of Integer)
  Dim ListNa As List(Of String)
  Dim ListYe As List(Of String)
       
        ListId.Add(TxtID.Text)
        ListPR.Add(TxtName.Text)
        ListYe.Add(TxtYear.Text)
        
   Dim j = New GetJson

        j.id = ListId
        j.Name = ListNa 
        j.Age = ListYe 
        j.Oggi = Now.ToString
        
        Dim result = JsonConvert.SerializeObject(j)

ebbene fin qua ci siamo, ma perché mi da errore nella parte quando prova ad aggiungere ListId.Add e gli altri?

3 Risposte

  • Re: Json problem, why?

    Quando invii un quesito invia la riga esatta dove avviene l'errore ed il messaggio di errore, è più probabile che qualcuno risponda
  • Re: Json problem, why?

    Ciao,
    non mi sembra che tu abbia inizializzato nessuna delle list ... per cui saranno nothing

    HTH
  • Re: Json problem, why?

    Buongiorno, scusate per la lunga attesa...

    sspintux ha scritto:


    Ciao,
    non mi sembra che tu abbia inizializzato nessuna delle list ... per cui saranno nothing

    HTH
    in effetti era proprio questo problema, comunque l'ho risolto!
Devi accedere o registrarti per scrivere nel forum
3 risposte