C# 调用dephi dll 实例

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Runtime.InteropServices;
namespace CommunicationManager
{
public class Comm
{
[DllImport("NsHotWatchIntf.dll", EntryPoint = "SUM", CharSet = CharSet.Auto)]
public static extern int SUM(string Number, string HotwatchNum);
}
}

posted @ 2014-09-11 17:04  armyfai  阅读(260)  评论(0编辑  收藏  举报