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 …
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. …