Das CopySourceAsHtml-Add In ist seit einiger Zeit auch für Visual Studio 2005 verfügbar:

Ein mögliches Resultat:
10
11 #region Addresses
12 public static class Address {
13 public static int AddNew(int UserID, bool Active) {
14 AddressTableAdapter ata = new AddressTableAdapter();
15 int newID = int.Parse(ata.AddNew(DateTime.Now, null, Active).ToString());
16 return newID;
17 }
18 }
19 #endregion