Benchmarker.Models.Config.Equals C# (CSharp) Метод

Equals() публичный Метод

public Equals ( object other ) : bool
other object
Результат bool
		public override bool Equals (object other)
		{
			if (other == null)
				return false;

			var config = other as Config;
			if (config == null)
				return false;

			return Name.Equals (config.Name);
		}