Pregunta

rectangle a=new a() { width=1; height=2; }

I used to construct objects like this, it there a similar way to do this in visual basic? I'm sorry I couldn't really label the technique.

¿Fue útil?

Solución

Object initializer in VB.NET:

Dim a = New Rectangle With { .width = 1, .height = 2 }

Otros consejos

The Rectangle has a constructor to define width and height:

Dim r As New Rectangle(1, 1, 200, 300) 'x,y,width,height
Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top