Hi,
I'm quite new in C# and I don't have many experiences with OOP. I would like to create a simple radar simulation.
At the beginning I created a moving object class this way:
...
I compiled this as library class. Then I created another class from which I would like to instantiate the moving object properties and I don't know exactly how to do that.
I have tried to do like this:
MovingObj a = new MovingObj();
...
a.Position(1,2,3);
...
but this isn't correct.
I would be very thankful if anyone could tell me how to set position properties in this case.
Regards,
Niko