//เขียนโปรแกรมโดยนางสาวมนปริญา ทองโคตร
using System;
public class yuki
{
private string name;
private string tel;
public string myname
get {return name ; }
set {name = value ; }
}
public string mytel
get {return tel ; }
set {tel = value ; }
public class Program
public static void Main()
yuki y1= new yuki ();
y1.myname = "Monpriya Thongkhot";
y1.mytel = "0994610987" ;
Console.WriteLine("My name is {0}",y1.myname);
Console.WriteLine("My phone number is {0}",y1.mytel);