Android Question Null not working as expected

JamesGreaves

Active Member
Licensed User
Null is not working as I expect, please advise, thanks.

B4X:
    Dim ThisValue As String
    
    ThisValue = Null
    
    If ThisValue = Null Then
        Log("Null Value")
        Log(">" & ThisValue & "<")
    Else
        Log("No Null detected")
        Log(">" & ThisValue & "<")
        
    End If

LOG SHOWS:
No Null detected
>null<
 
Top