public bool Equals(IXLPhonetic other) { if (other == null) return false; return Text == other.Text && Start == other.Start && End == other.End; }
public bool Equals(IXLPhonetic other) { if (other == null) { return(false); } return(Text == other.Text && Start == other.Start && End == other.End); }