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.138 -- Release Build+dacff88cce10d287c7434d5aac59c76948c712b1
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