I have declare an object like a type
when I loop Throwt it with foreach
in the last item see that fm =1 how can check if fm is atype I use this method but think that is not good for check mybe
B4X:
Type filemanager(name As String ,size As String,LastModified As String ,folder As Boolean)
when I loop Throwt it with foreach
B4X:
For Each FM As filemanager In myinfo.Values
....
Next
in the last item see that fm =1 how can check if fm is atype I use this method but think that is not good for check mybe
B4X:
If GetType(FM) = "b4j.example.b4xmainpage$_filemanager" Then
log("yes")
else
log("no")
end if