Developers Use Case For .NET API Browser

Abstract

Many times, developers need to know, if a technology or a feature is supported by a specific .NET version. For example, how to verify that .NET Core has Linux support or not. Well, you can always Bing that but wouldn’t it be better, if this need is supported by a “one-stop search” and the results were authentic?

Accessing the .NET API browser

.NET API Browser can be accessed by https://docs.microsoft.com/en-us/dotnet/api/

.NET

.NET API Browser allows you to search a wide range of features across the following.

  • .NET Framework
  • .NET Standard
  • .NET Core
  • Xamarin
  • Azure

Let’s search in .NET Framework

Open API Browser and filter it to .NET Framework and choose a version from the middle dropdown.

.NET Framework allows to search only for .NET 4.5 – 4.7 I.e. you can’t search features prior to .NET 4.5 in .NET API Browser.

With the release of .NET 4.6, a new overload was introduced for the System. GC.Collect(). When Searching in .NET 4.5, you will see, as shown below.

 .NET Framework

When we switched the Framework Version to 4.6; then the new overload can be observed, as shown below.

 Framework Version

Let’s Search in .NET Standard

.NET Standard is a specification of .NET API, which is available across all .NET Runtimes. .NET Standards provide and supports uniformity within the entire .NET ecosystem. You can refer to the list of .NET Standard libraries at https://www.nuget.org/packages/NETStandard.Library

As the name explains by itself; this becomes evident that all the core APIs like System, System. Collections, System. Diagnostics and System.IO etc. are the natural candidates for .NET Standard, as shown below.

.NET Standard

Let’s search in .NET Core

.NET Core is a brand new and well-accepted framework in the Microsoft and non-Microsoft world.

A well-known fact about .NET Core is that .NET Core has support for Linux, as shown below.

 .NET Core

Summary

.NET API Browser is a great feature and can become very handy to identify supported features by the various platforms, as shown above. You may want to use .NET API Browser to search and learn about other APIs related to Xamarin and Azure as well. Remember, it’s a one-stop .NET API Browser.


Recommended Free Ebook
Similar Articles