IC卡的读取写入事例
///
/// 激活TYPE_A卡
///
/// 通讯设备标识符
/// 卡序列号
/// 卡序列号长度
/// 返回卡容量
///
[DllImport("MasterRD.dll",EntryPoint="rf_select")]
public static extern int rf_select(IntPtr dve,byte[] cardnum,byte leng,byte[] size);
///
/// 读取MifareOne卡一块数据
///
/// 通讯设备标识符
/// M1卡绝对块号
/// 返回的数据
/// 返回数据的长度
///
[DllImport("MasterRD.dll",EntryPoint="rf_M1_read")]
public static extern int rf_M1_read(IntPtr dve,byte block,byte[] date,byte[] size);
1