/// <inheritdoc />
 public override int GetHashCode()
 {
     return(HashCodeUtils.CombineHashCodeValues(
                this.Guid.GetHashCode(),
                this.Name.GetHashCode(),
                this.Description.GetHashCode()));
 }
 /// <inheritdoc />
 public override int GetHashCode()
 {
     return(HashCodeUtils.CombineHashCodeValues(
                base.GetHashCode(),
                this.FileExtension.GetHashCode(),
                this.Description.GetHashCode()));
 }
Esempio n. 3
0
 public override int GetHashCode()
 {
     return(HashCodeUtils.CombineHashCodeValues(
                this.Argument?.GetHashCode() ?? 0,
                this.Description?.GetHashCode() ?? 0));
 }