Вопрос

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.

Это было полезно?

Решение

Object initializer in VB.NET:

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

Другие советы

The Rectangle has a constructor to define width and height:

Dim r As New Rectangle(1, 1, 200, 300) 'x,y,width,height
Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top