/// <inheritdoc/>
 public override bool Equals(UpgradeHint other)
 {
     return(Equals(other as MergeTypeHint));
 }
 /// <inheritdoc/>
 public override bool Equals(UpgradeHint other)
 {
     return(Equals(other as ChangeFieldTypeHint));
 }
Example #3
0
 /// <inheritdoc/>
 public override bool Equals(UpgradeHint other)
 {
     return(Equals(other as RecycledTypeHint));
 }
 private static InvalidOperationException HintConflict(UpgradeHint hintOne, UpgradeHint hintTwo)
 {
     return(new InvalidOperationException(string.Format(Strings.ExHintXIsConflictingWithHintY, hintOne, hintTwo)));
 }
 /// <inheritdoc/>
 public override bool Equals(UpgradeHint other)
 {
     return(Equals(other as CopyFieldHint));
 }