Кто-нибудь здесь может помочь мне с этим
Входной файл
Type Reference
WIN 00001
WIN 00001
WIN 00001
MAC 00001
MAC 00001
В основном мне нужно сравнить, если первые 3 символа не равны
предпочтительный результат будет
Тип Ссылка
WIN 00001
WIN 00001
WIN 00001
код ниже
Dim fh As StreamReader
Dim os as string
fh = new StreamReader("haggis.txt")
Dim s As String = fh.ReadLine()
While not s Is Nothing
os = s.Substring(0,3)
if os <> os then
Console.WriteLine("Write here")
else
end if
s = fh.ReadLine
End While
fh.Close()
End Sub