我正在尝试为某些硬件使用一些示例代码,MicroGate controller card。它们提供了一些示例代码,我遇到了使用sizeof的行的错误。以下是示例代码:
public static uint GetPortID(string name)
{
uint i, rc, count;
uint port_id = 0;
MGSL_PORT[] ports;
/* get count of available ports */
rc = MgslEnumeratePorts(null, 0, out count);
if (rc != 0 || count == 0)
return 0;
/* allocate memory to hold port information */
ports = new MGSL_PORT[count];
/* get port information */
rc = MgslEnumeratePorts(ports, (uint)(count * sizeof(MGSL_PORT)), out count);
if (rc != 0 || count == 0)
return 0;
/* search for entry with matching name */
for (i=0; i < count; i++) {
string port_name;
char[] port_chars = new char[25];
uint j;
fixed (byte* sendBuf = ports[i].DeviceName)
{
for (j=0 ; j < 25; j++)
port_chars[j] = (char)sendBuf[j];
}
port_name = new string(port_chars);
if (String.Compare(port_name.ToUpper(), name.ToUpper()) == 0) {
port_id = ports[i].PortID;
break;
}
}
return port_id;
}
在以下行:
rc = MgslEnumeratePorts(ports, (uint)(count * sizeof(MGSL_PORT)), out count);
Visual Studio表示&#34;无法获取托管类型变量的大小&#39; MGSL_PORT&#39;。出于好奇,我们是否认为此代码可能在过去有效?我需要不同版本的Visual Studio吗?有关如何解决它的任何建议?我无法想象他们会提供这个代码示例而不期望它能够正常工作。非常感谢任何帮助。
答案 0 :(得分:1)
我可以使用Marshal.SizeOf来获取结构的大小。我的代码行现在是:
rc = MgslEnumeratePorts(ports, (uint) (count * Marshal.SizeOf(typeof(SerialApi.MGSL_PORT))), out count);
答案 1 :(得分:0)
sizeof
(reference)只能使用某些类型。从引用开始,只有struct
不包含任何引用类型时才需要const int MGSL_SIZE = 37;
rc = MgslEnumeratePorts(ports, (uint)(count * MGSL_SIZE)), out count);
。如果类型确实具有常量,已知大小(API reference),则可以执行以下操作:
{{1}}