public int CompareTo(IChannelId other) { if (other is EmbeddedChannelId) { return(0); } return(string.Compare(this.AsLongText(), other.AsLongText(), StringComparison.Ordinal)); }
public int CompareTo(IChannelId other) { if (other is EmbeddedChannelId) { return 0; } return string.Compare(this.AsLongText(), other.AsLongText(), StringComparison.Ordinal); }
public string AsLongText() { return(_parentId.AsLongText() + '/' + _id); }