Going from VB to Arduino

Is there any way to convert code from VB to code for Arduino? This is part of the code I am trying to convert

namespace GPS
{
    public class GpsPoint
    {
        public float x { get; set; }
        public float y { get; set; }
        public GpsPoint(float x, float y)
        {
            this.x = x;
            this.y = y;
        }

Is there any way to convert code from VB to code for Arduino? This is part of the code I am trying to convert

Automatically, no. Manually, almost certainly yes, but you would probably be better to start from scratch rather than try to convert it.

UKHeliBob:

Is there any way to convert code from VB to code for Arduino? This is part of the code I am trying to convert

Automatically, no. Manually, almost certainly yes, but you would probably be better to start from scratch rather than try to convert it.

I figured I needed to do that. I am not too familiar with Arduino, and I am not really sure where to start. Do you have any suggestions ?

Learn C++.

An Arduino program is likely to be very different from a VB program because of the limited facilities on an Arduino and its ability to interface with hardware.

Write down (in English - or your own language if different) the high-level steps that the Arduino needs to take.

Then look through the Arduino examples and tutorials to see how similar things are done.

If you know how to program VB you won't have any trouble with C++

...R