Home »
VB.Net »
VB.Net Programs
VB.Net program to create a member function within the structure
By Nidhi Last Updated : October 13, 2024
Member function within the structure in VB.Net
Here, we will create a Student structure that contains three data members' id, name, and fees. Here, we also created two members SetStudent() and PrintStudent() to set and print Student detail on the console screen.
Program/Source Code:
The source code to create a member function within the structure is given below. The given program is compiled and executed successfully.
VB.Net code to create a member function within the structure
'VB.Net program to create a member function within the structure.
Module Module1
Structure Student
Private id As Integer
Private name As String
Private fee As Integer
Sub SetStudent(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
Dim stu2 As New Student
stu1.SetStudent(101, "Rohit", 5000)
stu2.SetStudent(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 two member functions to Set and print Student Information.
In the Main() function, we created two objects of Student structure and then Set the values of objects and print student information on the console screen.
VB.Net Structure Programs »