I can not add a reference to my program

1

I need to use this structure. The problem is that I can not find it in the .NET Framework. I already added a reference to System.Numerics and I put using , but I still can not use it. I also tried to add a reference to System.Numerics.Vectors and put using System.Numerics.Vectors , but it appears that 2 does not even exist.

Trying to use:

TryingtoaddreferencetoSystem.Numerics.Vectors:

What am I doing wrong? How to fix?

    
asked by anonymous 30.07.2017 / 00:36

1 answer

1

You will need to download the DLL by nuget

PM> Install-Package System.Numerics.Vectors
    
31.07.2017 / 16:36