language: C# (mono-2.8)
date: 559 days 3 hours ago
link:
visibility: public
1
2
3
4
5
6
7
8
9
10
11
12
13
14
using System;
using System.Collections.Generic;
 
public class Test
{
        public static void Main()
        {
                var l1 = new[]{"a"};
                var l2 = new[]{"a"};
                Console.WriteLine(l1.Equals(l2));
                Console.WriteLine(l1.GetHashCode());
                Console.WriteLine(l2.GetHashCode());
        }
}