I know this is available other places on the web, but I'm posting it here because I often have to search for it. This tip is more for my benefit than others :)
class Program
{
public static void Main()
{
Thread t = new Thread(delegate() {
SayName("Lou","Costello");
});
t.Start();
}
protected static void SayName(string firstName, string lastName)
{
Console.WriteLine(firstName + " " + lastName);
}
}