How to add constructor to a clasS in VB.NET

While making  the class create a function named "new"

public class  NameOfTheClass

public sub new ()
End sub

public Sub new( str As String , Str1 As String )
End Sub
End class



This is a small example to show how to make the constructor

Comments

Popular posts from this blog

How to use lamda expression for updating using LINQ

using session for login and logout in asp.net

How to post data in MVC using form collection for Beginners.