我想从这里https://github.com/se-passau/SPLConqueror/tree/master/SPLConqueror
运行一个项目我在Xamarin Studio(我正在运行OS X El Capitan 10.11.6)中打开它,但是在FeatureSubsetSelection.cs文件行1287中(System.Array ret = Array.CreateInstance(typeof(T),ASToIntArray( ).Reverse()。ToArray());)它给了我错误
错误CS0012:类型System.Numerics.Complex' is defined in an assembly that is not referenced. Consider adding a reference to assembly
System.Numerics,Version = 4.0.0.0,Culture = neutral,PublicKeyToken = b77a5c561934e089'(CS0012)
其中A.S.ToIntArray()。Reverse()。ToArray()据说是关键部分。
我添加了nuget包System.Numerics.Vectors(因为没有其他的System.Numerics包),但错误仍然存在。
有没有人知道如何修复它?提前谢谢!
答案 0 :(得分:1)
您需要先添加System.Numerics作为参考,然后才能使用它。