Change-Id: Id25fa18c89c9e2dda8a2c0f04b6178173beb5c6f
Signed-off-by: dongsug.song <dongsug.song@samsung.com>
// drop into native code to see if both handles point to the same body
return x.IsEqual( y) ;
}
// drop into native code to see if both handles point to the same body
return x.IsEqual( y) ;
}
+ if (BaseHandle.ReferenceEquals(x, null) && !BaseHandle.ReferenceEquals(y, null))
+ {
+ if (y.HasBody()) return false;
+ else return true;
+ }
+ if (!BaseHandle.ReferenceEquals(x, null) && BaseHandle.ReferenceEquals(y, null))
+ {
+ if (x.HasBody()) return false;
+ else return true;
+ }
+
+ return false;
}
// Inequality operator. Returns Null if either operand is Null
}
// Inequality operator. Returns Null if either operand is Null