Monday, January 11, 2016

The underscore in the middle of a name in C#.

This has a very specific convention. It really only appears in:

  1. snake case names for unit tests (and that's Ruby creeping in)
  2. web forms event handlers...
    protected void Button_Click(object sender, EventArgs e)
    {

No comments:

Post a Comment