using System; namespace ConsoleApplication2 { class Program { static void Main(string[] args) { var p = new Person { FullName = "Le Minh Tuan", Age = 26, Address = "Da Nang, Viet Nam" }; p.ShowInfo(); Console.ReadLine(); } } class Person { public string FullName; public int Age; public string Address; public void ShowInfo() { Console.WriteLine(" Name:{0} \n Age: {1} \n Address: {2}", FullName, Age, Address); } } }