Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

Tags:

.net

.net-core

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

like image 393
Boppity Bop Avatar asked Dec 07 '25 03:12

Boppity Bop


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.

like image 162
Eric Erhardt Avatar answered Dec 09 '25 06:12

Eric Erhardt