Jean-Marc Flamand
Jean-Marc Flamand

Reputation: 989

Be able to find the NuGget package to install from https://docs.microsoft.com/en-us/dotnet/api

I'm trying to build a console project (.NetCore 3.1) to run the matrix multiplication example.

The issue is the following with VS2109

Just by looking at the Microsoft documentation on the web, can you explain how can I find the package to use.

Upvotes: 1

Views: 568

Answers (1)

canton7
canton7

Reputation: 42330

Firstly, scroll down to the bottom of the page, to "Applies to". You can see that it's already built into .NET 3.0+ and .NET Core 3.0+:

Applies to

Fine, so we don't need to install a NuGet package to use it on .NET Framework and .NET Core. So what DLL is it in?

Take a look at the top of the page:

Namespace and Assembly

We can see that it's in WindowsBase.dll.

Provided that you're using .NET Framework or .NET Core 3.0+, you can add a reference to WindowsBase:

Reference Manager

Upvotes: 4

Related Questions