Permalink
Cannot retrieve contributors at this time
Fetching contributors…
| ' Visual Basic .NET Document | |
| Option Strict On | |
| ' <Snippet1> | |
| Public Class Automobile | |
| ' No implementation. All members are inherited from Object. | |
| End Class | |
| Module Example | |
| Public Sub Main() | |
| Dim firstAuto As New Automobile() | |
| Console.WriteLine(firstAuto) | |
| End Sub | |
| End Module | |
| ' The example displays the following output: | |
| ' Automobile | |
| ' </Snippet1> |