(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)
{
// 答案:
}