How do you compare two different guids? The compiler is telling me that = is not a valid operator for type guid and type guid.
I am trying a simple if then statement to see if the guids match.
Thanks!
Printable View
How do you compare two different guids? The compiler is telling me that = is not a valid operator for type guid and type guid.
I am trying a simple if then statement to see if the guids match.
Thanks!
if guidvariable.tostring = otherguidvariable.tostring then
Thanks! It's the little things that get ya.