私は次の構造体を持っています:
[StructLayout(LayoutKind.Sequential, Pack = 1)]
struct cAuthLogonChallenge
{
byte cmd;
byte error;
fixed byte name[4];
public cAuthLogonChallenge()
{
cmd = 0x04;
error = 0x00;
name = ???
}
}
name
はnullで終了するASCII文字列であると想定されており、VisualStudioはそれと対話するための私のアイデアをすべて拒否しています。どうすれば設定できますか?