If you have need for a 3d int construct. I’d create a 3d int struct.
public struct Int3d
{
public int x;
public int y;
public int z;
}
It defines a specific use 3d construct. It takes up the same amount of space as an array of size 3, but when you receive this you KNOW it’s of size 3, no bigger, no smaller.
Ok, I think I’ll use struct as I’ve said before, thanks to both of you. (and by the way, it’s completely mad to use an array in this case, don’t do that, never ! ^^).