Tagged Questions
0
votes
2answers
368 views
how to make accessor for Dictionary in a way that returned Dictionary cannot be changed C# / 2.0
I thought of solution below because the collection is very very small. But what if it was big?
private Dictionary<string, OfTable> _folderData = new Dictionary<string, OfTable>();
...