Hi

First off let me say that I am essentially new to VB.NET, i.e; still learning. Also, I hope that this is the right place to post this question.

In a Project I have a Class module defined as:

Public Class Def
Public Id As String
Public Meaning As String
.
.
Public Code As Integer
End Class

Now in another Class module, Class A, Class B, etc., to create an instance of Def I use:

Private LocalDef as New Def

Is that statement identical to:

Private LocalDef as Def = new Def

If not, what is the difference?

Thanks in advance for your help.

Jerry B