This doesn't change anything. Even if virtual is not provided in these signatures, they are still virtual because they are virtual methods inherited from Object.
Removing the virtual keyword in these signatures might save a few letters of typing, but reduces clarity.
In fact, I think some compilers might complain if the virtual isn't included.
This doesn't change anything. Even if
virtual
is not provided in these signatures, they are still virtual because they are virtual methods inherited from Object.Removing the
virtual
keyword in these signatures might save a few letters of typing, but reduces clarity.In fact, I think some compilers might complain if the
virtual
isn't included.