Monday, December 1, 2008

test syntax hilight


public class Person
{
private string name;
private int age;

public string Introduce()
{
return string.Format("hello my name is {0}, I'm {1} years old", name, age);
}
}

No comments: