1. 在.net(C# or vb.net)中需要进行哪些操作才能使用自定义类库。假设,自定义类库的动态连接库文件为CustListBox.dll,类库的命名空间是Custom。
2.(C#) 数据类型转换. 填充下列函数体
// typedef struct 
// {
// UINT16 day   :5;           // years since 1904 (MAC format)
// UINT16 month :4; 
// UINT16 year  :7; 
// } DateType;
//
// Sample; byte[] = 0x90CA   -> UInt16  = 0xCA90 -> 1100101 0100 10000 year = 101 month = 4 day =16
// year = 101 + 1904 = 2005 /// <summary>
/// DateType 转换成 代表year month day 的整形数组, 即是分离年,月,日字段
/// </summary>
/// <param name="byteDateType"></param>
/// <returns></returns>
public static int[] DateTypeToDate (byte[] byteDateType)
{
// }