Error Instantiating Class
C#
4
Posts
2
Posters
0
Views
1
Watching
-
I am getting a Stack Overflow Exception anytime I try to instantiate my custom class any ideas?
Any recursive method/contructor calls?
-
Any recursive method/contructor calls?
-
Did you trace the constructor call in single-step mode? Maybe it calls a neverending method, or it calls itself like that: public MyClass(int x):this(x){}