How do you overload the constructor in .NET?
Public Sub New()
End Sub
Public Sub New(By Value myInteger As Integer)
End Sub
Public Sub New(By Value myString As String)
End Sub
Can I have all those subs at the same time? I know you overload in C#. Just didn't know if you can do that with VB.NET
Thanks,
Rico
Public Sub New()
End Sub
Public Sub New(By Value myInteger As Integer)
End Sub
Public Sub New(By Value myString As String)
End Sub
Can I have all those subs at the same time? I know you overload in C#. Just didn't know if you can do that with VB.NET
Thanks,
Rico