C# .NetCF 2.0 中 String.Contains() 的解决方法?

发布于 2024-08-17 12:54:31 字数 138 浏览 7 评论 0原文

有一个名为 Contains 的字符串方法。它允许您快速搜索一个字符串以查找另一个字符串。我需要在 .netcf 2.0 应用程序中使用它,但根据 MSDN,它直到 3.5 框架才可用。

谁能提供解决方法(C#)?

TIA 高贵

There is a string method called Contains. It allows you to quickly search a string for another string. I need to use this in a .netcf 2.0 application but per MSDN it does not come available until the 3.5 framework.

Can anyone offer a work around (C#)?

TIA
Noble

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

阳光下慵懒的猫 2024-08-24 12:54:31

您可以尝试使用 String.IndexOf。如果返回 -1,则该字符串不存在于另一个字符串中。

You could try using String.IndexOf. If it returns -1, the string does not exist inside the other string.

只有一腔孤勇 2024-08-24 12:54:31

怎么样 string.IndexOf 并检查它是否返回大于 -1 ?

What about string.IndexOf and just check to see if it returns greater than -1?

绝影如岚 2024-08-24 12:54:31

在 Reflector 中浏览“String.Contains”给出如下结果。我认为这可以直接在代码中使用。

Public Function Contains(ByVal value As String) As Boolean
    Return (Me.IndexOf(value, StringComparison.Ordinal) >= 0)
End Function

还有C#版本

public bool Contains(string value)
{
    return (this.IndexOf(value, StringComparison.Ordinal) >= 0);
}

Browsing "String.Contains" in Reflector gives below. I think this can be used directly in code.

Public Function Contains(ByVal value As String) As Boolean
    Return (Me.IndexOf(value, StringComparison.Ordinal) >= 0)
End Function

Also a C# version

public bool Contains(string value)
{
    return (this.IndexOf(value, StringComparison.Ordinal) >= 0);
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文