public override bool Equals(object p)
 {
     return(p is PlayableHandle && PlayableHandle.CompareVersion(this, (PlayableHandle)p));
 }
 public static bool operator !=(PlayableHandle x, PlayableHandle y)
 {
     return(!PlayableHandle.CompareVersion(x, y));
 }