Example #1
0
 /// <inheritdoc />
 public bool Equals(AbsoluteId other)
 {
     return(AssetId.Equals(other.AssetId) &&
            ObjectId.Equals(other.ObjectId));
 }
Example #2
0
 public bool Equals(BuildNodeDesc other)
 {
     return(AssetId.Equals(other.AssetId) && ReferenceEquals(CompilationContext, other.CompilationContext));
 }
Example #3
0
 public bool Equals(LogKey other)
 {
     return(AssetId.Equals(other.AssetId) && string.Equals(Name, other.Name));
 }
Example #4
0
 protected bool Equals(Item other)
 {
     return(AssetId.Equals(other.AssetId));
 }