Is it possible to use the Intrinsics namespace in a .NET desktop application

  • Thread starter Thread starter Silvers11
  • Start date Start date
S

Silvers11

Guest
Hello

I am using .Net Core 3.1 with the below Intrinsics namespaces.

The thing is that I have a .NET desktop application but seems to not be able to add those namespaces in that application.

But in a .NET Core 3.1 desktop application it is possible where I have created a function for this namespace.


Now, do I need to move the whole .NET desktop application code with all the controls that I have to .NET Core 3.1 desktop application in order to use the Intrinsics namespace?

using System.Runtime.Intrinsics;
using System.Runtime.Intrinsics.X86;

Continue reading...
 
Back
Top