You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, the RUC analyzer and RAF analyzer don't check for other virtual calls, for example:
// On one filepublicvirtualvoidVirtualMethod()=>null// On some other file[RequiresAttributeFiles]publicoverridevoidVirtualMethod(){SomeCode}publicvoidM1(){VirtualMethod();//This doesnt warn on the analyzer}
The behavior should be to warn on all implementations of the method
The text was updated successfully, but these errors were encountered:
Currently, the RUC analyzer and RAF analyzer don't check for other virtual calls, for example:
The behavior should be to warn on all implementations of the method
The text was updated successfully, but these errors were encountered: