Imagine that you have a dictionary like that:
Dictionary<int, int[]> dict = new Dictionary<int, int[]>();
So what I want to do is to ".add" to the value like a normal array.
I know I can add a Key and a Value like that:
dict.Add(0, new int[]{1, 2, 3, 4});
So I have this: Key=0, Value=[1, 2, 3, 4].
But what happen if I want to add a "5" at the value of the "Key=0" in order to make it appears like Key=0, Value=[1, 2, 3, 4, *5*]?
5at the end of it since Arrays have fixed size