I have read that VB.NET is a fully Object-Oriented Compatible language....but to my amazement I have found out this code in a Console Application....
Code:
Imports System.Console
Module Module1
Sub Main()
WriteLine("Hello from Visual Basic")
ReadLine()
End Sub
End Module
Now how can we access
WriteLine() and ReadLine() without creating the object of Console class(as we have only IMPORTED it, NOT INHERITED it), because in Java even if u import a class in a package(namespace here) u have to still instantiate(create object of) that class to access its members(data and methods).......I am still a beginner to the .NET world(as i am still learning Console Application

)