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
/// <summary>/// Refactoring the name of derived class member that hides a base class member/// <para>/// In Visual Studio version 16.8.1, if member PI in the derived class/// is refactored with a new name, it would be nice to have an option/// for this to propagate up to the base class and avoid the following warning./// </para>/// <para>/// Warning CS0109 /// The member 'DerivedClass.PI_Renamed' does not hide an accessible member. /// The new keyword is not required./// </para>/// </summary>classDerivedClass:BaseClass{newdoublePI=3.14159265358979323;}abstractclassBaseClass{publicdoublePI=22/7;}
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Beta Was this translation helpful? Give feedback.
All reactions