У меня есть DependencyObject в C #, который используется в массиве. Пример показан ниже:
private KeywordTag[] tags = new KeywordTag[] {
new KeywordTag { Tag = "test", IncidenceCount = 2076 },
new KeywordTag { Tag = "oi", IncidenceCount = 2052 },
new KeywordTag { Tag = "hmm", IncidenceCount = 1887 },
new KeywordTag { Tag = "grr", IncidenceCount = 1414 },
new KeywordTag { Tag = "thanks", IncidenceCount = 1166 }}
Как мне преобразовать этот код в VB.NET?
Спасибо!