ch3p-Guest (invited to party)

AppParty     House Host







Guest.cs


namespace party.house.occupants
{
class Guest
{
string name;

public Guest(string name)
{
this.name = name;
}

override public string ToString()
{
return name;
}
}
}









AppParty     House BACK_TO_TOP Host



Comments

Popular posts from this blog

Contents