Users Pricing

forum

Home Forums How to populate a list inside a dictionary? – MindStick

How to populate a list inside a dictionary?

Anonymous User 3240 16 Dec 2013

I have a dictionary that needs to be populate with a list. The code below does not work. How would I fix it?

clientinfo.cs

public Dictionary<int, List<string>> Languages { get; set; }

main.cs

var ClientsData = new List<MapModel.ClientInfo> { }
   ClientsData.Add(new MapModel.ClientInfo { Id = IDCounterDoctors, Languages = new Dictionary<int, List<string>>()});
   ClientsData[0].Languages.Add(2376, ["english", "french"]); // issue is here

1 Answers

Markdown for AI

A clean, structured version of this page for AI assistants and LLMs.

Open .md