Tp.Integration.Plugin.Common.Activity.ActivityLogRecord.Equals C# (CSharp) Method

Equals() public method

public Equals ( ActivityLogRecord other ) : bool
other ActivityLogRecord
return bool
		public bool Equals(ActivityLogRecord other)
		{
			if (ReferenceEquals(null, other))
			{
				return false;
			}
			if (ReferenceEquals(this, other))
			{
				return true;
			}
			return other.DateTime.Equals(DateTime) && Equals(other.Level, Level) && Equals(other.Message, Message) && Equals(other.Details, Details);
		}

Same methods

ActivityLogRecord::Equals ( object obj ) : bool
ActivityLogRecord