nesting of class

Sep 17 2008 7:25 AM

there is class A having class B(nested) in it . now i require to use class A's functionality again in B . is there any optimised way to implement this thing.?

eg.

class A

{

   class B

   {

      // have to re-implement class A here,...

   }


Answers (6)