示例#1
0
        public void Test()
        {
            var obj = new MichaelRepro4();

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