You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 13, 2022. It is now read-only.
From what I have understand, .Net Core 2.0 is an implementation of .Net Standard 2.0 .
However I'm facing an issue when I'm trying to move my code from a .Net Core 2.0 project to a .Net Standard 2.0 project with the following message :
No overload for method 'Replace' takes 3 arguments
.Net Standard 2.0 references the following methods :
From what I have understand, .Net Core 2.0 is an implementation of .Net Standard 2.0 .
However I'm facing an issue when I'm trying to move my code from a .Net Core 2.0 project to a .Net Standard 2.0 project with the following message :
.Net Standard 2.0 references the following methods :
https://docs.microsoft.com/fr-fr/dotnet/api/?view=netstandard-2.0&term=string.replace
In another side, .Net Core 2.0 implements the following methods :
https://docs.microsoft.com/fr-fr/dotnet/api/?view=netcore-2.0&term=string.replace
Is it possible to add these missing definitions to the next version of .NetStandard ?