xxxxxxxxxx
// PascalCase: First letter of each word capitalized (used for class names)
public class MyClass
{
// camelCase: First letter lowercase, followed by each new word's first letter capitalized (used for variables, parameters, and fields)
private int myVariable;
// ALL_CAPS: All letters uppercase, words separated by underscores (used for constants)
public const int MAX_VALUE = 100;
// Hungarian notation: Prefix specifying variable type (not widely used in modern C#)
private string strText;
}