StringParserExpectedFieldNamesMatch Method

Validates that expected field names match field names found.

Definition

Namespace: Gemstone.IO.Parsing
Assembly: Gemstone.Common (in Gemstone.Common.dll) Version: 1.0.150 -- Release Build+64e3b411e1abfbd2d4d8a81e850c3909a0ce8731
public static bool ExpectedFieldNamesMatch(
	string[]? expectedFieldNames,
	string[]? actualFieldNames,
	bool matchCase = true,
	int length = 0,
	int startIndex = 0
)

Parameters

expectedFieldNames  String
The string array of expected field names.
actualFieldNames  String
The string array of actual field names.
matchCase  Boolean  (Optional)
Set to TRUE to require case to match.
length  Int32  (Optional)
The number of fields to check. Less than 1 sets length to expectedFieldName length
startIndex  Int32  (Optional)
The index to use to start matching test.

Return Value

Boolean

[Missing <returns> documentation for "M:Gemstone.IO.Parsing.StringParser.ExpectedFieldNamesMatch(System.String[],System.String[],System.Boolean,System.Int32,System.Int32)"]

See Also