Recursive class definiton ?
C#
5
Posts
3
Posters
0
Views
1
Watching
-
I have a class A and within this class A, I want to have an object of type A. Is this possible ? Do I need to do anything special ?
-
I have a class A and within this class A, I want to have an object of type A. Is this possible ? Do I need to do anything special ?
i think u can do that
Cheers Navaneeth!!
-
i think u can do that
Cheers Navaneeth!!
Thanks a lot..
-
I have a class A and within this class A, I want to have an object of type A. Is this possible ? Do I need to do anything special ?
-
Hello, It's working as long as you not calling " ??? = new A();". Then you would have a invinit loop! All the best, Martin
I understand..I will not need to do that !