Home »
VB.Net »
VB.Net Programs
VB.Net program to create a constructor within the structure
By Nidhi Last Updated : October 13, 2024
Constructor within the structure in VB.Net
Here, we will create a parameterized constructor within the structure and create a function to print student information on the console screen.
Program/Source Code:
The source code to create a constructor within the structure is given below. The given program is compiled and executed successfully.
VB.Net code to create constructor within the structure
'VB.Net program to create a constructor within the structure.
Module Module1
Structure Student
Private id As Integer
Private name As String
Private fee As Integer
Sub New(ByVal i As Integer, ByVal n As String, ByVal f As Integer)
id = i
name = n
fee = f
End Sub
Sub PrintStudent()
Console.WriteLine("Student Id : {0}", id)
Console.WriteLine("Student Name: {0}", name)
Console.WriteLine("Student Fees: {0}", fee)
End Sub
End Structure
Sub Main()
Dim stu1 As New Student(101, "Rohit", 5000)
Dim stu2 As New Student(102, "Virat", 7000)
Console.WriteLine("Student1: ")
stu1.PrintStudent()
Console.WriteLine(vbCrLf & "Student2: ")
stu2.PrintStudent()
End Sub
End Module
Output
Student1:
Student Id : 101
Student Name: Rohit
Student Fees: 5000
Student2:
Student Id : 102
Student Name: Virat
Student Fees: 7000
Press any key to continue . . .
Explanation
In the above program, we created a module Module1. Here, we created a Structure Student that contains data members' id, name, and fees. In the Student structure, we created a parameterized constructor using the New keyword and we also created a PrintStudent() function to print Student Information.
In the Main() function, we created two objects of Student objects that are initialized using the parameterized constructor. After that, we printed the Student information on the console screen.
VB.Net Structure Programs »