Tomas Kubes
Tomas Kubes

Reputation: 25098

.NET Core vs standard .NET library performance

Is there any difference in performance for the same code compiled into standard .NET library or .NET core on Windows?

I suppose that speed would be same if same IL is generated. And what about memory requirements?

Upvotes: 3

Views: 1598

Answers (1)

J. Doe
J. Doe

Reputation: 2747

.Net Standard are only interfaces what can be implemented in .Net Core, .Net Framework or other. For more i recommend to read https://learn.microsoft.com/en-us/dotnet/articles/standard/library

If you want to know differencces about .Net Core and .Net Framework (it's not "standard .Net") you can see https://www.techempower.com/benchmarks/

Upvotes: 7

Related Questions