Data Types VB.Net

Imports System
Public Class MainClass
    Shared Sub Main()
        'Declare variable
        Dim strName As String
        'Get the name
        strName = "STEPHANIE"
        'Compare the name
        If String.Compare(strName, "STEPHANIE", True) = 0 Then
            System.Console.WriteLine("Hello, Stephanie!")
        End If
    End Sub
End Class