public customer():this("nofirstname","nolastname")
public customer(string firstname,string lastname)
this.Firstname=firstname;
public void printfullname()
Console.WriteLine("the fullname of the customer is {0} {1}",this.Firstname,this.Lastname);
public static void Main()
customer c1=new customer("salvi","marulf");
customer c2=new customer();