StringParserExpectedFieldNamesMatch Method
Validates that expected field names match field names found.
Namespace: Gemstone.IO.ParsingAssembly: Gemstone.Common (in Gemstone.Common.dll) Version: 1.0.166 -- Release Build+d3cb24a90fe44346300dfbb17444d7b350f42d79
public static bool ExpectedFieldNamesMatch(
string[]? expectedFieldNames,
string[]? actualFieldNames,
bool matchCase = true,
int length = 0,
int startIndex = 0
)
Public Shared Function ExpectedFieldNamesMatch (
expectedFieldNames As String(),
actualFieldNames As String(),
Optional matchCase As Boolean = true,
Optional length As Integer = 0,
Optional startIndex As Integer = 0
) As Boolean
public:
static bool ExpectedFieldNamesMatch(
array<String^>^ expectedFieldNames,
array<String^>^ actualFieldNames,
bool matchCase = true,
int length = 0,
int startIndex = 0
)
Gemstone.IO.Parsing.StringParser.ExpectedFieldNamesMatch = function(expectedFieldNames, actualFieldNames, matchCase, length, startIndex);
- 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.
Boolean[Missing <returns> documentation for "M:Gemstone.IO.Parsing.StringParser.ExpectedFieldNamesMatch(System.String[],System.String[],System.Boolean,System.Int32,System.Int32)"]