how can i accept only array of 2 doubles?
tried this but i get error
public SomeConstructor(double[2] pointA) 
Compile: 489.061ms | Execution: 44.580ms | React with ❌ to remove this embed.
ctor(Tuple<double, double> pointA)ctor((double, double) pointA)var x = new smth(...)*tuple...tuple.Item1.Item2(int, double) t = (1, 0.5);
(int i, double d) = t;
d0.5public void Method1(double arg1, double arg2) ...
Method1(tuple[0], tuple[1])
Method1(...) unpack tuple therepublic readonly record struct Point(double X, double Y);