/declare x local
/varset x @Param1
A) /if ( @x==SomeString )
B) /if ( ${String[@x]==SomeString} )
C) /if ( ${String[@x].Equal[SomeString] )
I guess I'm wondering if I should change my old style compares (A) to semi object-based (B) or full object-based (C).
Will == be obsoleted when the new variable method is implemented?

