Hi!
I'm constantly using the "Implement interface" shortcut in Visual Studio 2008. My "problem" is that i want Visual Studio to use the String-alias instead of string in every instance.
Since i'm forced to use String instead of string this would save me a great ammount of time. For example, i want the following:
public Catalogue(String url) { }
instead of
public Catalogue(string url) { }
Is this possible? Where do I find these templates?
Thanks