编组修复了 .netcompactFramework 中的 Tchar[]

发布于 2024-10-27 11:43:42 字数 310 浏览 3 评论 0原文

如何在 .Net Compact Framework 和 in.net Framework 中编组固定的 Tchar[]

typedef  struct _VXN_REGISTRATION_RESPONSE
{
       char        DID [257]; 
       TCHAR       PrimarySDCURL [257];
       TCHAR       SecondarySDCURL [257];
} VXN_REGISTRATION_RESPONSE, *LPVXN_REGISTRATION_RESPONSE;

How can one Marshal the fixed Tchar[] in .Net compact Framework and in.net Framework

typedef  struct _VXN_REGISTRATION_RESPONSE
{
       char        DID [257]; 
       TCHAR       PrimarySDCURL [257];
       TCHAR       SecondarySDCURL [257];
} VXN_REGISTRATION_RESPONSE, *LPVXN_REGISTRATION_RESPONSE;

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

一桥轻雨一伞开 2024-11-03 11:43:42

我假设 TCHAR 很宽。如果没有,那么您可以计算出来,因为它与 char 字段相同。

该结构想要这样声明:

public struct LPRData
{
    [MarshalAsAttribute(UnmanagedType.ByValArray, SizeConst = 257)]
    public byte[] DID;
    [MarshalAsAttribute(UnmanagedType.ByValTStr, SizeConst = 257)]
    public string PrimarySDCURL;
    [MarshalAsAttribute(UnmanagedType.ByValTStr, SizeConst = 257)]
    public string SecondarySDCURL;
}

唯一的困难是紧凑的框架并不容易从 Unicode 转换为 ANSI。因此,要分配给 DID,您需要:

string DID = ...;
LPRData data = new LPRData();
data.DID = DID.Encoding.ASCII.GetBytes(DID);

I'm assuming that TCHAR is wide. If not then you can work it out since it's the same as the char field.

The struct wants to be declared like this:

public struct LPRData
{
    [MarshalAsAttribute(UnmanagedType.ByValArray, SizeConst = 257)]
    public byte[] DID;
    [MarshalAsAttribute(UnmanagedType.ByValTStr, SizeConst = 257)]
    public string PrimarySDCURL;
    [MarshalAsAttribute(UnmanagedType.ByValTStr, SizeConst = 257)]
    public string SecondarySDCURL;
}

The only difficult bit is that compact framework doesn't make it easy to convert from Unicode to ANSI. So to assign to DID you need:

string DID = ...;
LPRData data = new LPRData();
data.DID = DID.Encoding.ASCII.GetBytes(DID);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文