我找到了一个我想要实现的代码片段。现在是一个功能没有运行的问题。无法将索引应用于“IntPtr”类型的表达式
fixed (byte* numRef = this.tribuf)
{
for (int i = 0; i < num; i++)
{
item = this.trihash.GetItem(ch + S.Substring(i, 3));
if (item != null)
{
this.TrigramChecked += item.Count;
foreach (int num3 in item)
{
if ((num3 != id) && (numRef[num3] < 0xff))
{
IntPtr ptr1 = (IntPtr) (numRef + num3);
/* ToDo: Error */
ptr1[0] = (IntPtr) ((byte) (ptr1[0] + 1));
}
}
}
}
}
问候克里斯