Categories: German, VisualStudio 2005 Posted by AlexanderZeitler on 4/6/2006 5:41 PM | Comments (0)

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

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5
Comments are closed