Я просто не уверен, как я могу маскировать с добавлением массивов. Мне также хотелось бы, чтобы система маскировки распознавала обратное пространство не как букву.Как я могу интерпретировать систему маскировки в моей системе входа?
Module Module1
Sub Main()
Dim memofs As Char
Dim stdntpassword As String = Nothing
Dim staffpassword As String = Nothing
Console.Write("Are you a member of staff? (y/n) ")
memofs = Console.ReadLine
If memofs = "y" Or memofs = "Y" Then
ElseIf memofs = "n" Or memofs = "N" Then
Console.WriteLine("Password: ")
stdntpassword = Console.ReadLine
End If
For attempts As Integer = 1 To 5
Console.WriteLine()
Console.WriteLine("Attempt Number " & attempts)
Console.WriteLine()
Console.Write("Password: ")
staffpassword = Console.ReadLine
Dim fullline As String = ""
FileOpen(1, _
"E:\Computing\Spelling Bee\StaffPasswords\staffpassword.csv", OpenMode.Input)
fullline = LineInput(1)
Dim item() As String = Split(fullline, ",")
If staffpassword = item(0) Then
Console.Clear()
staffmenu()
Else : FileClose(1)
End If
Console.Clear()
Оценил,
Вы мужчина! Большое спасибо! – user3042666