I have multiples Var : ARRAY [0..220] OF Positions_T, that I need to compare quickly.
I don't really want to do a Loop that goes by every 220 points and compare each one of them so I was wondering if there is another way.
I came accross the MEM.Compare function, but it require to know the size in Bytes of the memory, and I don't know how to do that...
Has anybody an idea on how to do the comparing easily ?
Thanks in advance
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hi Everybody,
I'm looking for a simple way of comparing two array of a structure.
My structure is define like this :
I have multiples Var : ARRAY [0..220] OF Positions_T, that I need to compare quickly.
I don't really want to do a Loop that goes by every 220 points and compare each one of them so I was wondering if there is another way.
I came accross the MEM.Compare function, but it require to know the size in Bytes of the memory, and I don't know how to do that...
Has anybody an idea on how to do the comparing easily ?
Thanks in advance
Hi, something like this ?
If I knew it was this simple...
Exactly what I was looking for ! Thanks you very much.