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.128 -- Release Build+d050cfc5563c89a1188cc3c6b2d417530856f490
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