Overloading getter and setter causes a stack overflow in C#
I am not sure what is causing the StackOverflowException when I try to overwrite a get and set function. When I just use the default get and set it works. enum MyEnumType { …. } public MyEnumType data { get; set; } But when I try to add additional data, it throws a StackOverflowException: public … Read more