in C# 7
var coords = new[] { ( 50, 350 ), ( 50, 650 ), ( 450, 650 )};

for named version, do this: (thanks entiat)
var coords2 = new(int X, int Y) [] { (50, 350), (50, 650), (450, 650) };
or
(int X, int Y) [] coords3 = new [] { (50, 350), (50, 650), (450, 650) };
or
(int X, int Y) [] coords4 = { (50, 350), (50, 650), (450, 650) };
so we can use X, Y instead of Item1, Item2
coords4.Select(t => $"Area = {t.X * t.Y}");