Exemplo n.º 1
0
        public void Test()
        {
            var obj = new MichaelRepro4();

            Contract.Assert(obj.Value == null); // true
            Contract.Assert(obj.mRep != null);  // false
        }
Exemplo n.º 2
0
 public void Test()
 {
   var obj = new MichaelRepro4();
   Contract.Assert(obj.Value == null); // true
   Contract.Assert(obj.mRep != null);  // false
 }
Exemplo n.º 3
0
 public MichaelRepro4(string val, MichaelRepro4 rep)
 {
   this.Value = val;
   this.mRep = rep;
 }
Exemplo n.º 4
0
 public MichaelRepro4(string val, MichaelRepro4 rep)
 {
     this.Value = val;
     this.mRep  = rep;
 }