For example
If arrayToSearchThrough(i + j) <> patternToFind(j) Then
found = False
Exit For
End If
What does <>
this mean in Visual Basic .Net
For example
If arrayToSearchThrough(i + j) <> patternToFind(j) Then
found = False
Exit For
End If
What does <>
this mean in Visual Basic .Net
This represent NOT EQUAL TO sign.
If a <> b then it can be read as
If a is less than b or a is greater than b
which would result in if a is anything except equal to b
Simply means NOT EQUAL TO
for example :
if a <> b
// your operation
end if
In other words you can write it as below
if not a = b