using System.Collections;
public static void Main()
var wordsA = new[] {"cherry", "apple", "blueberry"};
var wordsB = new[] {"apple", "blueberry", "cherry"};
var match = wordsA.Execute<bool>("SequenceEqual(wordsB)", new {wordsB});
Console.WriteLine("The sequences match: {0}", match);