I was wondering if there is a way to create extension methods using Visual Studio 2005 and the 2.0 framework?
public static class StringExtensions
{
public static void SomeExtension(this String targetString)
{
}
}
If there is no way to do this, what would the equivalent be? Just create static methods in some sort of library class?