As we all know, .NET has very good documentation and variable / parameter names. Often you can figure out how to pass function parameters only to the variable names shown during development, without any consultation with the documentation. Itβs very interesting to me that the only variable with an unrelated name is e , which is used in almost all declarations of event functions, such as:
private void button1_Click(object sender, EventArgs e)
private void button1_DragDrop(object sender, DragEventArgs e)
My question is why do they call all arguments of events e ? Is there a story behind this?
user415789
source share