In tutorials, I've been seeing that there are two ways to assign values to an array in C#.
First method is:
double[] values = {23.245, 14.22,12.00};
Second method is:
double[] values = new double[] {23.245, 14.22, 12.00};
I would appreciate it if someone explained to me the difference between the two.
Cheers.