StringsExtensionsFirstIndexOf Method |
Find the first index of the passed string to match.
Namespace:
MFiles.VAF.Common
Assembly:
MFiles.VAF (in MFiles.VAF.dll) Version: 2.3.623.2
Syntaxpublic static int FirstIndexOf(
this Strings strings,
string match
)
<ExtensionAttribute>
Public Shared Function FirstIndexOf (
strings As Strings,
match As String
) As Integer
public:
[ExtensionAttribute]
static int FirstIndexOf(
Strings^ strings,
String^ match
)
Parameters
- strings
- Type: Strings
Strings collection> - match
- Type: SystemString
Value to find.
Return Value
Type:
Int32Index or -1.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
Strings. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
See Also