Example #1
0
 /// <summary>
 /// TBD
 /// </summary>
 /// <param name="other">TBD</param>
 /// <returns>TBD</returns>
 public bool Equals(ActorPath other)
 {
     if (other == null)
     {
         return(false);
     }
     return(Equals(other.ToSurrogate(null))); //TODO: not so sure if this is OK
 }
Example #2
0
 public bool Equals(ActorPath other)
 {
     if (other == null)
     {
         return(false);
     }
     return(Equals(other.ToSurrogate(null)));
 }