Returns a value indicating whether a specified substring occurs within this string.
命名空间:
HslCommunication
程序集:
HslCommunication (在 HslCommunication.dll 中) 版本:12.1.2.0 (12.1.2.0)
语法 public static bool Contains(
this string str,
string[] value
)
<ExtensionAttribute>
Public Shared Function Contains (
str As String,
value As String()
) As Boolean
public:
[ExtensionAttribute]
static bool Contains(
String^ str,
array<String^>^ value
)
[<ExtensionAttribute>]
static member Contains :
str : string *
value : string[] -> bool
参数
- str
- 类型:SystemString
[缺少 "M:HslCommunication.HslExtension.Contains(System.String,System.String[])" 的 <param name="str"/> 文档]
- value
- 类型:SystemString
The string to seek.
返回值
类型:
Boolean if the
value parameter occurs within this string, or if
value is the empty string (""); otherwise,
.
备注
在 Visual Basic 和 C# 中,这个方法可以当成为类型
String 的实例方法来调用。在采用实例方法语法调用这个方法时,请省略第一个参数。请参考
扩展方法 (Visual Basic) 或
扩展方法 (C# 编程指南) 获取更多信息。
异常 异常 | 条件 |
---|
ArgumentNullException | value is . |
参见