Search Results

0
votes

What tools (free or otherwise) do you find useful for developing and debugging C#/C++?

Resharper 4.0 to replace the built-in refactoring (commercial) GhostDoc for auto-code documentation (free) …
4
votes

Reading Excel files from C#

Here's some code I wrote in C# using .NET 1.1 a few years ago. Not sure if this would be exactly what you need (and may not be my best code :)). using System; using System.Data; usi …
1
vote

Does Visual Studio Server Explorer support custom database providers?

I found this during my research on Sqlite. I haven't had the chance to use it though. Let us know if this works for you. http://sqlit …
0
votes

Select a random N elements from List<T> in C#

I recently did this on my project using an idea similar to Tyler's point 1 …
1
vote

rss parser in .net

You may want to look at Argotic too - http://www.codeplex.com/Argotic I have used Argotic during .Net 1.1 when the Syndication …
2
votes

Reading non-standard elements in a SyndicationItem with SyndicationFeed

Here is how I managed to retrieve the enclosure link from a feed using SyndicationFeed. static void Main(string[] args) { var feedUrl = "http://blog.stackoverflow.com/index.php? …