J'ai besoin d'appeler un constructeur à partir du corps d'un autre. Comment puis je faire ça?
Essentiellement
class foo {
public foo (int x, int y)
{
}
public foo (string s)
{
// ... do something
// Call another constructor
this (x, y); // Doesn't work
foo (x, y); // neither
}
}