Buddy.UI.Core.Themes.AccentColor.Equals C# (CSharp) Method

Equals() public method

Indicates whether the current object is equal to another object of the same type.
public Equals ( IAccentColor other ) : bool
other IAccentColor The other.
return bool
		public bool Equals(IAccentColor other)
		{
			if (other == null)
				return false;

			return Name == other.Name;
		}