111,129
社区成员
发帖
与我相关
我的任务
分享
Public Type TagIds
TagType As Byte
Num As Byte
Ids(11) As Byte
End Type
public struct SMSMessageStruct
{
[MarshalAs(UnmanagedType.ByValTStr, sizeconst = 256)]
public string Msg;
[MarshalAs(UnmanagedType.ByValTStr, sizecounst = 32)]
public string PhoneNo;
[MarshalAs(UnmanagedType.ByValTStr, sizecounst = 32)]
public string ReceTime;
}
public class TagIds
{
public byte TagType;
public byte Num;
public byte[] Ids = new byte[11];
}