Instance Variables

This does not work:

If any(&instanceVariable) Then
...

This does work:

Local string&x = &instanceVariable;
If any(&x) Then
...

Haven't had time to look at why that is the case yet.

2 comments:

Pat said...

Yes I have found that

Pat said...

Yes I have found that