-
if you have read my article Move a DataReader to an Object with reflection where i explain how to move a row from a DataReader into a custom object. Mapping the query fields into object properties, you may have noticed the rigidity of the code. You needed to have the exact numcers of fields in the query...
-
I was trying to see how fast HashSet search is compared to a List. Microsoft defines the HashSet as: “provides high performance set operations. A set is a collection that contains no duplicate elements, and whose elements are in no particular order. ” So I wrote the following code: class...