Zum Inhalt

Dictionaries in Xojo

Dictionary anlegen und Werte zuweisen

Var myDict As New Dictionary

myDict.Value("Key") = "my value"
myDict.Value("Key2") = "my value #2"

Dictionary in Array überführen

Var myArray() As String

For Each key As Variant In myDict.Keys
  Var theValue As String = myDict.Value(key)
  myArray.AddRow(theValue)
Next

Feedback / Kontakt

Wenn Sie Fragen oder Anregungen zum Artikel Dictionaries in Xojo haben, senden Sie mir bitte eine E-Mail an: xojo+dictionary@technotes.jakoubek.net