I was wondering about the best way to map one value to many in a dictionary (or some other structure) in C#.
What I wanted to do is something like this:
public GenreToEntity = new Dictionary<string, string[]>()
{
{ "filmes", ["Filme"] },
{ "programas", ["Jornalismo", "Variedade", "Série/seriado"] }
};
But it should be static, so I don't want to add values line by line. Is that possible?