Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

12
votes
8answers
762 views

C#: What style of data containers are preferred in general?

When creating a simple data container class, what should it be? Class or struct? Mutable or immutable? With or without non-empty constructor? Examples of the above: struct MutableStruct { ...
0
votes
1answer
18 views

Why should I call Dispose on DataContainer or DataContext while it seems it doesn't differ?

I create a simple test program to find out the memory and speed difference between calling Dispose vs not calling it for DataContainer object. Here my test program: static void Main(string[] args) { ...
0
votes
0answers
22 views

How to buffer incoming data stream

the front-end of my application is very fast and pushes data (in format of json,atom or html) to the back-end at a great speed and amount. I need a way to buffer it before it goes to back-end. Any ...
0
votes
2answers
61 views

.NET container for two-way conversion data?

I have conversion tables I need to contain in memory for fast access. Until now I used a simple Hashtable were the Key was the internal code, and the Value was an object holding the external code and ...