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