Hi, i'm learning SFML.net and i've created vertex array with
public static VertexArray arr = new VertexArray(PrimitiveType.Lines, 2);
And when i try to get access to arr[0].position 4example i get error 'Cannot modify return value, because it's not variable' So how can i get access to any vertex in this array? In normal vertex class it works properly.