Files
linux-packaging-mono/mcs/class/System.Numerics/corefx/Vector.cs

12 lines
154 B
C#
Raw Normal View History

namespace System.Numerics
{
static class Vector
{
[JitIntrinsic]
public static bool IsHardwareAccelerated {
get {
return false;
}
}
}
}