I´m not very experienced with C# but I urgently have to read a variable from a structure given in a library.
this is the definition of the structure in the library:
public struct mtLocation {
public bool bAltitudeValid;
public bool bCoordinatesValid;
public double dAltitude;
public ulong dateTime;
public double dLatitude;
public double dLongitude; }
I want to use write the value of dLatitude and dLongitute into my own double variables in order to use them in my program.