Tp.Integration.Plugin.Common.Storage.Persisters.StorageName.Equals C# (CSharp) Méthode

Equals() public méthode

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

Same methods

StorageName::Equals ( object obj ) : bool