public static string ToTitleCase(this string value)
{
...
}
allows you to do the following;
string state = "south west australia";
Console.WriteLine(state.ToTitleCase());
You can extend even interfaces so if you create;
public static IEnumerable
{
...
}
You will find the WhereEven method is available on List