我正在尝试初始化一个Vector<int>
(与 BepuPhysics 集成,但我认为它是无关紧要的)。
我的系统上的静态属性System.Numerics.Vector<int>.Count
等于,8
所以我手动初始化了一个 8 元素数组。
这是我的代码:
var handles = new []{1, 2, 3, 4, 5, 6, 7, 8};
var vector = new System.Numerics.Vector<int>(handles);
我错过了一些明显的东西吗?提前致谢。