In our VB.net codebase I occasionally see Dim x as new Y(), where Y is a class.
What is this code doing and how does it differ to the more common Dim x as Y = new Y()"?
Thanks.
|
In our VB.net codebase I occasionally see What is this code doing and how does it differ to the more common Thanks. |
|||
|
|
|
They are exactly the same; the first is just a shortcut: |
|||||||||
|
|
As mentioned in @Gendolkari's answer, the code is exactly the same. But I dispute that However, it might be more common at your work place. If that's the case, I have to come down against using the shortcut. Coding standards are important. If used correctly, even simple deviations like this are valuable because they set up easy to spot red flags that the code may need deeper inspection for other flaws. |
||||
|