So I was playing around with a little idea and while putting together a simple class, very hastily I might add, I accidentally did something that caused a StackOverflowException to be thrown.
1 2 3 4 5 |
private Int32 someValue; public Int32 SomeValue { get { return SomeValue; } } |