私は次のクラスを持っていますPeople
:
class People
{
public enum Gender
{
Man = 'w',
Woman = 'f'
}
public struct Person
{
public string First, Last;
public Gender Gender;
public int Age;
public float Height, Weight;
}
public struct Group
{
public int Members;
public string Name;
}
}
今、私たちはクラスにいProgram
ます:
class Program
{
static void Main( string[] args )
{
People.Person p = new People.Person();
p.First = "Victor";
p.Last = "Barbu";
p.Age = 14;
p.Height = 175;
p.Weight = 62;
p.Gender = People.Gender.Man;
Console.ReadLine();
}
}
次のような行を入れたい:
Console.Write( x.toString() );
メソッドをカスタマイズするにはどうすればよいですかx.toString()
。結果はコンソールで次のようになります
Victor Barbu
14 years
Man
175 cm
62 kg
?
前もって感謝します!