Is there System.Runtime.Intrinsics for .NET framework?

Viewed 1892

I can only see System.Runtime.Intrinsics for .NET Core 3.0 (which is a preview). Is there similar dll for .NET Framework?

1 Answers

No, unfortunately the hardware intrinsics feature is only supported on .NET Core. It isn't available on .NET Framework. You can get .NET Core 3.0 Preview 1 from https://aka.ms/netcore3download. Note that you no longer need to reference the System.Runtime.Intrinsics package to use the feature. The APIs are available by default when targeting netcoreapp3.0.

Related