Skip to content

Instantly share code, notes, and snippets.

@abock
Created November 25, 2014 17:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save abock/9668f417a11bc9c72b30 to your computer and use it in GitHub Desktop.
Save abock/9668f417a11bc9c72b30 to your computer and use it in GitHub Desktop.
using System;
using System.Collections.Generic;
static class TupleCompareTest
{
static void Main ()
{
var a = Tuple.Create (new [] { "one", "two" }, "hello");
var b = Tuple.Create (new [] { "one", "two" }, "hello");
Comparer<Tuple<string[], string>>.Default.Compare (a, b);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment