我想将一个结构存储到MemoryMappedFile中,但是这个结构包含引用类型的字符串(我知道的最大大小),因此被MemoryMappedViewAccessor拒绝。
你知道一个很好的固定长度字符串结构(值类型)实现吗?如果有必要,我可以硬编码长度(因为数组是引用类型)。
例如,我可以将其实例化为:
TenCharsString myString = new TenCharsString("1234567890");
使用MarshalAs属性进行装饰
<MarshalAs (UnmanagedType.ByValTStr, SizeConst:=128)>
应该有效,但事实并非如此。
答案 0 :(得分:1)
这是一个简单的10个字符的值类型:
struct TenChars
{
public char A;
public char B;
public char C;
public char D;
public char E;
public char F;
public char G;
public char H;
public char I;
public char J;
}
如果选择不安全的代码,也可以这样做:
unsafe struct TenChars
{
public fixed char Chars[10];
}
完整代码:
struct TenChars1
{
public const int Capacity = 10;
private char A;
private char B;
private char C;
private char D;
private char E;
private char F;
private char G;
private char H;
private char I;
private char J;
public TenChars1(string value)
{
if (value == null) throw new ArgumentNullException("value");
if (value.Length > Capacity) throw new ArgumentException();
A = (value.Length > 0) ? value[0] : '\0';
B = (value.Length > 1) ? value[1] : '\0';
C = (value.Length > 2) ? value[2] : '\0';
D = (value.Length > 3) ? value[3] : '\0';
E = (value.Length > 4) ? value[4] : '\0';
F = (value.Length > 5) ? value[5] : '\0';
G = (value.Length > 6) ? value[6] : '\0';
H = (value.Length > 7) ? value[7] : '\0';
I = (value.Length > 8) ? value[8] : '\0';
J = (value.Length > 9) ? value[9] : '\0';
}
public override string ToString()
{
return new string(new char[] { A, B, C, D, E, F, G, H, I, J });
}
}
unsafe struct TenChars2
{
public const int Capacity = 10;
private fixed char buffer[Capacity];
public TenChars2(string value)
{
if (value == null) throw new ArgumentNullException("value");
if (value.Length > Capacity) throw new ArgumentException();
fixed (char* ptr = this.buffer)
fixed (char* chars = value)
{
for (int i = 0; i < value.Length; i++)
{
*(ptr + i) = *(chars + i);
}
}
}
public override string ToString()
{
fixed (char* ptr = this.buffer)
{
return new string(ptr);
}
}
}
答案 1 :(得分:0)
您可以单独存储结构内部。您可以使用WriteArray和ReadArray将字符串存储为字符数组。其他人可以使用各种Write methods。