Exemple #1
0
        public static void IsEqual(this BasicISerializableObject @this, BasicISerializableObject other, bool isSamePlatform)
        {
            if (@this == null && other == null)
            {
                return;
            }

            Assert.NotNull(@this);
            Assert.NotNull(other);
        }
 public static bool IsEqual(this BasicISerializableObject @this, BasicISerializableObject other)
 {
     return(@this != null &&
            other != null);
 }