Questions tagged [pascalcasing]

Pascal case is a language-independent naming convention in which each word of an identifier name begins with a capital letter, such as CustomerName, CustomerId, etc.

In Pascal case, there is no indicator of the data type of the identifier. The name will be descriptive only, and not indicate types.

Examples of Pascal case: CustomerName, CustomerId, PostalCode, PrintInvoice

See also

61 questions
0
votes
1 answer

How to automatically convert ASP.NET MVC action names to dashed URLs?

Let's say I have this action method in my ApplicationController public ActionResult MyActionMethodName() { ... } I want this (and all methods that doesn't have a specific route) method's route to be /application/my-action-method-name without…
empz
  • 11,509
  • 16
  • 65
  • 106
1 2 3 4
5