哪个.nuget软件包包含String.Compare和StringComparison参数?

时间:2018-11-20 23:02:12

标签: c# .net nuget-package .net-standard

我试图寻找在.Net标准类库中必须包含的pagacke的文档。

我要将文件从Asp.Net Core 2.1 Web项目移植到.Net标准2.0类库中,现在它缺少String.Contains中的StringComparison参数。

public bool Contains(String value, StringComparison comparisonType)

enter image description here

是否可以将其包含在nuget包中?

1 个答案:

答案 0 :(得分:0)

此方法包含在System.Runtime中,您不能在 netstandard2.0 中使用它。您需要目标 netcoreapp2.1 或安装此软件包,但这不是一个好主意,因为它与Microsoft.NETCore.Platforms和Microsoft.NETCore.Targets

有依赖性。

You can see this GitHub issue