I've been doing:
Dim x as SomeClass = new SomeClass(operators)
But I found accidently:
Dim x as New SomeClass(operators)
Is the first or second preferred .NET syntax...I've been using the first since it's similiar to C# syntax. Is one of them VB6?
Dim x as SomeClass = new SomeClass(operators)
But I found accidently:
Dim x as New SomeClass(operators)
Is the first or second preferred .NET syntax...I've been using the first since it's similiar to C# syntax. Is one of them VB6?