Search Results

4
votes

HSL in .net

The color struct provides three methods: GetHue, GetSaturation and GetBrightness. Bob Powell wrote an intere …
1
vote

Database Migration library for .NET

@Chris Smith "Migrations" in this case means migrating from one version of a database schema to the next. Say your customer has version 3.7 of your application, in which the database schem …
14
votes

Any decent C# profilers out there?

dotTrace from JetBrains is widely used. Patrick Smacchia's awesome NDepend …
1
vote

Returning Large Results Via a Webservice

There's no hard law against 5 Mb as a result set size. Over 400 Mb can be hard to send. Y …
0
votes

Returning Large Results Via a Webservice

So it sounds like you'd be interested in a solution that adds 'starting record number' and 'final record number' parameter to your web method. (or 'page number' and 'results per page') This …
0
votes

Reading Excel files from C#

you could write an excel spreadsheet that loads a given excel spreadsheet and saves it as csv (rather than doing it manually). then you could automate that from c#. and once its in …
1
vote

Memory Leaks in .Net

Block the finalizer. …