Imports System
Public Module Module1
Public Structure TestStruct
Public Name As String
Public Number As Integer
End Structure
Public Sub Main()
Dim a = Nothing
Dim b = "Hello"
Dim ts = new TestStruct ' ts.Name is null
Console.WriteLine(b & a & ts.Name & b)
End Sub
End Module