private static bool ArgumentAreEquivalents(CodeAttributeArgumentCollection testCaseAttributeArguments, CodeAttributeArgumentCollection arguments) { return(ArgumentAreEquivalents(testCaseAttributeArguments, arguments.OfType <CodeAttributeArgument>().ToArray())); }
private static string FormatAttributeArguments(CodeAttributeArgumentCollection arguments) { return(FormatAttributeArguments(arguments.OfType <CodeAttributeArgument>().ToArray())); }