123
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 |
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ConstructorsChain { class Program { static void Main(string[] args) { } } class Car { public int velocity; public string driverName; public Car() { } public Car(int speed):this(speed,"") { } // link to main constructor public Car(int speed="15", string name="defaultName") // << main constructor with default param values { // some business logic here if (speed > 10) { speed = 7; Console.WriteLine("Too much"); } velocity = speed; driverName = name; } } } |