Olá profs. Boa tarde. Tudo bem? Existe como utilizar o método Add nos Dicionários para acrescentar mais de uma linha(linha da matrix) ao dicionário?
fiz um exemplo para ajudar a entender o que estou tentando fazer:
registros.Add (
"Pink Flo", new List<int> { 8, 10, 9 } ,
"Link Park", new List<int> { 8, 10, 9 } ,
"U2", new List<int> { 8, 10, 9 } ,
);
// executando registro:
registro [
"Pink Flo", new List<int> { 8, 10, 9 } ,
"Link Park", new List<int> { 8, 10, 9 } ,
"U2", new List<int> { 8, 10, 9 } ,
]