I don't know if anyone reading this now will ned this.
Anyway, there is a small thing I see in many code examples programmers offer in this forum and outside of it, this is about the intialization of objects using the New keyword.
Why using thisif you can use this?VB Code:
Dim Obj as SomeType Obj = New SomeType(...)
? ? ? a modern programmer should always look for the compact and shortest way.VB Code:
Dim Obj As New SomeType(...)




Reply With Quote