C
cody
Iam wondering why I can do
DateTime[] a = {};
but Iam not allowed to do:
DateTime[ , ] b = { {}, {} };
instead I have to write:
DateTime[ , ]b={{new DateTime()},{new DateTime()}};
this isn't very consistent.
DateTime[] a = {};
but Iam not allowed to do:
DateTime[ , ] b = { {}, {} };
instead I have to write:
DateTime[ , ]b={{new DateTime()},{new DateTime()}};
this isn't very consistent.