C# .NetCF 2.0 中 String.Contains() 的解决方法?
有一个名为 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以尝试使用 String.IndexOf。如果返回 -1,则该字符串不存在于另一个字符串中。
You could try using String.IndexOf. If it returns -1, the string does not exist inside the other string.
怎么样
string.IndexOf
并检查它是否返回大于 -1 ?What about
string.IndexOf
and just check to see if it returns greater than -1?在 Reflector 中浏览“String.Contains”给出如下结果。我认为这可以直接在代码中使用。
还有C#版本
Browsing "String.Contains" in Reflector gives below. I think this can be used directly in code.
Also a C# version