0

私は 10 年生のプログラミング学生です。エラー: Conversion from string "alan" to type 'Boolean' is not valid。私はそれを回避することはできません。エラーは、それが言う行にあります(If firstname = "alan" Or "Alan" Then)。コードは次のとおりです。

Module Module1

Sub Main()
    Dim firstname As String
    Console.WriteLine("Hello and welcome to Alan's Computer: Press enter to continue")
    Console.ReadLine()
    Console.WriteLine("Please enter your first name")
    firstname = Console.ReadLine()
    If firstname = "alan" Or "Alan" Then
        Console.WriteLine("Welcome")

    Else
        Console.WriteLine("You may not enter {0}", firstname)
    End If

End Sub

End Module
4

1 に答える 1