C# Dictionary question

Hi, if i have a dictionary in C# defined like so: Dictionary<string, List<int>> test; and I do List<int> stringValue = test["string"]; is the resulting variable "stringValue" a copy of test["string"] or the actual list ???
Was this page helpful?