StringParserFindIndex Method
Finds the index of the first matching (or containing) field name
Namespace: Gemstone.IO.ParsingAssembly: Gemstone.Common (in Gemstone.Common.dll) Version: 1.0.166 -- Release Build+d3cb24a90fe44346300dfbb17444d7b350f42d79
public static int FindIndex(
string fieldNameValueSought,
string[]? fieldNames,
bool matchCase = true,
bool contains = false
)
Public Shared Function FindIndex (
fieldNameValueSought As String,
fieldNames As String(),
Optional matchCase As Boolean = true,
Optional contains As Boolean = false
) As Integer
public:
static int FindIndex(
String^ fieldNameValueSought,
array<String^>^ fieldNames,
bool matchCase = true,
bool contains = false
)
Gemstone.IO.Parsing.StringParser.FindIndex = function(fieldNameValueSought, fieldNames, matchCase, contains);
- fieldNameValueSought String
- the field name to find
- fieldNames String
- the string array of fields
- matchCase Boolean (Optional)
- set to FALSE for case insensitive tests
- contains Boolean (Optional)
- Set to TRUE to find index that CONTAINS the fileNameValueSought
Int32[Missing <returns> documentation for "M:Gemstone.IO.Parsing.StringParser.FindIndex(System.String,System.String[],System.Boolean,System.Boolean)"]