Jau

Jau

  • NA
  • 1
  • 0

.NET auto complete virtual methods

Aug 1 2005 7:34 PM
Hi all,

I can't find a better topic to put this post under. Sorry.

Anyway, I thought there was a way to automatically fill in the virtual methods when inheriting from a parent.
e.g.
class Parent
{
   virtual void method1();
}

class Child:Parent // do some special key-combo here that generates the following
{
   void method1();
}

Am I making up stuff or is there really something that I can do here? 
Thanks.

Answers (1)