using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Runtime.InteropServices; namespace BLL { public class RefComm { [DllImport("Matchdll.dll", EntryPoint = "process", CharSet = CharSet.Ansi, CallingConvention = CallingConvention.StdCall)] public static extern int process(string a, string b); } }