Point structure in unsafe mode problem

  • Thread starter Thread starter James Dean
  • Start date Start date
J

James Dean

I cannot access my array of points in unsafe mode....why?.....i can see
the values but when i do pointPtr->x then it says it cannot access the
values. The pointPtr->X has no value.
 
James Dean said:
I cannot access my array of points in unsafe
mode....why?.....i can see the values but when
i do pointPtr->x then it says it cannot access the
values. The pointPtr->X has no value.

Could you post a short piece of code that demonstrates the problem?

P.
 
Hi James,

"X" is Point property... and to access it you should call:
get_X() or set_X(...)
.... but i don't know how it would work in "unsafe" ?

Regards

Marcin
 
Back
Top