constructor-overloading

Я не могу понять, почему конструктор выполняется с параметром Double[]? using System.Collections.Generic; using System.Linq; using System.Text; namespace MyConsoleApp { class Program { static void Main(string[] args) { D myD = new D(null); Console.ReadLine(); ...