Exemplo n.º 1
0
    public static int Main()
    {
        var a = new StructWithObj {
            Obj = new object()
        };
        var c = new StructWithObj {
            Obj = new object()
        };

        return(Problem(a, c).Obj == c.Obj ? 100 : 101);
    }
Exemplo n.º 2
0
 private static StructWithObj Problem(StructWithObj a, StructWithObj c)
 {
     StructWithObj b = a;