Posted 18 years ago
by Jeff Hutt
-
Blade Games World
Just came across a bug in autocomplete where it goes into an infinite loop.
I had accidentally created a class that inherited from itself...As soon as you type an opening parenthesis after "Foo" it will hang.
Christian
I had accidentally created a class that inherited from itself...
using System;
class Motorbike : Motorbike
{
override void Foo
}
Christian