using System.Runtime.InteropServices; 加到该加的地方,你懂
[DllImport("xxxx.dll", EntryPoint="RuteDistance", CallingConvention=CallingConvention.Cdecl)]
static int RuteDistance(double longitude_pre, double latitude_pre, double lonitude_nxt, double latitude_nxt, ref double dis); 放在类里面、方法外面
其中函数名EntryPoint根据你dll导出名而定,CallingConvention.Cdecl也根据需要可能是CallingConvention.Stdcall不过就你函数声明来看应该是Cdecl。最后一个参数如果是用于输出的,可以考虑把ref改为out