0% found this document useful (0 votes)
6 views

Practical2.Net

Uploaded by

seemakasture75
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as RTF, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
6 views

Practical2.Net

Uploaded by

seemakasture75
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as RTF, PDF, TXT or read online on Scribd
You are on page 1/ 3

practical no:

Namespace Employee
Public Class Department
Sub show()
MsgBox("Inside a user defined
namespace")
End Sub
End Class
End Namespace

Module Module1

Sub Main()
'Console.WriteLine("hello!")
'Console.WriteLine("my name is
shubhangi Andhale")
'Console.WriteLine("I am from
shevgoan,ahamednager")
'Console.WriteLine("my mobile no
is:9850244787")
'Console.WriteLine("I am sy student
now I am currently studing in computer
diploma from BSP in JSPM ")
'Console.Write("my first year
percentage is 92%")'
Dim obj1 As New Employee.Department
obj1.show()
Console.ReadLine()
End Sub

End Module

output:

You might also like