Example #1
0
 public void OrEx1()
 {
     Assert.Throws <ArgumentNullException>(() =>
     {
         byte[] b1 = new byte[0];
         byte[] b2 = null;
         byte[] re = ByteArrayExtensions.Or(b1, b2);
     });
 }
Example #2
0
 public void OrEx1()
 {
     byte[] b1 = new byte[0];
     byte[] b2 = null;
     byte[] re = ByteArrayExtensions.Or(b1, b2);
 }