5 out of 9 rated this helpful - Rate this topic

Method Naming Guidelines

.NET Framework 1.1

The following rules outline the naming guidelines for methods:

  • Use verbs or verb phrases to name methods.
  • Use Pascal case.

The following are examples of correctly named methods.

RemoveAll()
GetCharArray()
Invoke()

See Also

Design Guidelines for Class Library Developers | Method Usage Guidelines

Did you find this helpful?
(1500 characters remaining)
© 2013 Microsoft. All rights reserved.