Mystery code

StevenT

New member
Joined
Jun 16, 2004
Messages
2
Programming Experience
1-3
I have been given a webservice to troubleshoot and have come across this line...

BooleanVariable1 = Len(StringVariable1) = 0

It does not cause a problem but I don't know what it is doing...help

Thanks
Steve
 
A better approach

I think VB.NET syntax has been laughing at us.
You should replace

BooleanVariable1 = Len(StringVariable1) = 0

with

BooleanVariable1 = (Len(StringVariable1) = 0)

Just works!
 
Back
Top