Beef icon indicating copy to clipboard operation
Beef copied to clipboard

[BUG] Rename symbol does not rename all locations

Open xposure opened this issue 5 years ago • 1 comments

Something along these lines will not rename everything correctly if you rename the IBehavior<T>.Update method.

public Result{
Success,
Failed,
Running
}
public IBehavior<T>{
   Result Update(T t);   
}

public abstract class Behavior<T> : IBehavior<T>
{
    public abstract Result Update(T t);
}

public void Sequence<T> : Behavior<T>
{
   public override Result Update(T t) {}
}

xposure avatar Oct 06 '20 21:10 xposure

Does this still occur ? I cant even replicate the given structure

Booklordofthedings avatar Aug 03 '23 07:08 Booklordofthedings