I am trying to store a Type of System.Collection.Queue, the queue will only contain strings. The issue I am having is that when I attempt to use it, it is always Null.
Settings.Default.CorrectionsDescription.Enqueue(textString);
I get the following error:
Object reference not set to an instance of an object.
I have gotten StringCollection to work fine but I need the Queue for FIFO.
How do you initialized the Queue in the Settings or thru Code? When i've tried it has given me the error that it is read only.