Vector2 array declaration+init

I want to have an array of 2 Vector2 vectors and want to initialize them in the same line, so I tried this:

public readonly Vector2[] TOWER_POS = {new Vector2(2,0), new Vector2(2,6)};

Unfortunately TOWER_POS ends up being a Vector2 instead of an array (according to MonoDevelop…)

Suggestions?

public Vector2 vs = {new Vector2(0,1),new Vector2(1,0)};

well turns out MonoDevelop was being stupid once again.
I restarted and now it’s fine again.
Are there any good intellisense plugins for MonoDevelop?