language: C# (mono-2.8)
date: 240 days 10 hours ago
link:
visibility: public
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
using System;
using System.Collections.Generic;
 
namespace Testing 
{
        public class Program
        {
                public static void Main(string[] args)
                {
 
                        Guid x = Guid.Empty;
                        List<Guid> y = new List<Guid>();
                        y.Add(x);
                        Console.WriteLine(y.Contains(x)); // true!
                }
        }
}