Skip to content

Latest commit

 

History

History
12 lines (10 loc) · 289 Bytes

event-handler-naming.md

File metadata and controls

12 lines (10 loc) · 289 Bytes

C# Naming Convention > Event Handler Naming

PascalCase

  • Capitalize first letter of each word of the event handler
  • Begin with the event name then suffix with EventHandler
private void ProductPurchasedEventHandler(object sender, ProductPurchasedEventArgs e)
{
    ...
}