Tp.Integration.Plugin.Common.Storage.ProfileId.Equals C# (CSharp) Method

Equals() public method

public Equals ( ProfileId other ) : bool
other ProfileId
return bool
		public bool Equals(ProfileId other)
		{
			if (ReferenceEquals(null, other)) return false;
			if (ReferenceEquals(this, other)) return true;
			return Equals(other.Value, Value);
		}

Same methods

ProfileId::Equals ( object obj ) : bool