Registriert seit: 12. Jun 2002
3.483 Beiträge
Delphi 10.1 Berlin Professional
|
Re: [C#] Wie überladene Konstruktoren aufrufen?
8. Feb 2004, 00:48
Probiere es mal so:
Delphi-Quellcode:
public Distance(int max, int min, int mid)
{
this.max = max;
this.min = min;
this.max = max;
}
public Distance() : this(100, 0, 50)
{
}
|