Search Results

12
votes

What are your favorite extension methods for C#/.NET? (codeplex.com/extensionoverflow)

public static class StringExtensions { /// <summary> /// Parses a string into an Enum /// </summary> /// <typeparam name="T">The type of the Enum</type …
0
votes

CSV Parsing

FileHelpers for .Net is your friend. …
1
vote

Why no Reference Counting + Garbage Collection in C#?

The object implemeting IDisposable must also implement a finalizer called by the GC when the user doesn't explicit call Dispose - see …
1
vote

Invoke Google Maps API V3 Javascript API from Windows Forms app?

You could host the WebBrowser control on your form and use that to interact with the Google Maps API. But some more information about what you are really trying to do would be nice. …