public override bool Equals(object obj) { if (obj == this) { return(true); } if (!(obj is ByteHandlerTestCase.Item)) { return(false); } ByteHandlerTestCase.Item other = (ByteHandlerTestCase.Item)obj; return((other._byte == this._byte) && this._byteWrapper.Equals(other._byteWrapper )); }
/// <exception cref="System.Exception"></exception> public virtual void TestStoreObject() { ByteHandlerTestCase.Item storedItem = new ByteHandlerTestCase.Item((byte)5, (byte )6); DoTestStoreObject(storedItem); }