Exemplo n.º 1
0
        public override bool Equals(object obj)
        {
            if (obj == null)
            {
                return(false);
            }

            ATrace that = obj as ATrace;

            if ((System.Object)that == null)
            {
                return(false);
            }

            return(this.seenCount.Equals(that.seenCount) && this.trace.SequenceEqual(that.trace));
        }
Exemplo n.º 2
0
 public static void begin2()
 {
     trace2 = new ATrace();
     trace  = trace2;
 }
Exemplo n.º 3
0
 public static void begin1()
 {
     trace1 = new ATrace();
     trace  = trace1;
 }