, this(), , .
, , Id, full Name, this, :
public Foo()
{
Id = ComputeId();
}
public Foo(string name)
: this()
{
Name = name;
}
, paramterfull Id, this():
public Foo()
{
Id = ComputeId();
}
public Foo(int id)
{
Id = id;
}
, :
public Foo(int id, string name)
: this(id)
{
Name = name;
}