Extension methods for dumping a C# DataTable to a CSV file or string. For DataReader to CSV, this worked for me:https://stackoverflow.com/a/29561684/8534588 …
C#
C#: Track Performance of Database Calls
Plug-n-play thread-safe C# utility class for determining which database calls are slowing down your application. Examples: …
[Read more...] about C#: Track Performance of Database Calls
Simple C# Cache
A plug-n-play thread-safe cache that can be dropped into any C# application. Notes: The active parameter exists for easy disabling of the cacheIf you are caching objects (i.e. T is a reference type) you should supply a clone function that is more efficient than the default …