I am somewhat new to C# and just wondering if it is possible to get a reference to a value in a Dictionary.
I am currently working on an application that uses a singleton design with the idea that I can have access to all objects, and ideally be able to get a reference to the requested value stored in the Dictionary to have direct access to the objects outside the singleton class.
I know you can get the value with dictionary_.ElementAt(id)
is there a way to get the reference to the element value?