let's say I have a Dictionary structure like
var stocks = new Dictionary<string, double>();
stocks.Add("APPL", 1234.56);
While retaining the ability to Add and Remove from the Dictionary, is there a way the contents can be 'shared' between instances of it's containing class? (By the way, I am forced to inherit from a containing class that cannot be static.)
Or is there another way to represent the data that would allow this type of sharing?