EPPLUS is duplicating strings on insert
问题 I am trying to insert text into RichText, when the index of the inserted string is at the end of an element the next element gets duplicated! Here is an example: worksheet.Cells[rownum + 100, column].RichText.Add("first "); worksheet.Cells[rownum + 100, column].RichText.Add(" second"); worksheet.Cells[rownum + 100, column].RichText.Text = worksheet.Cells[rownum + 100, column].RichText.Text.Insert(6, "Inserted"); Result: "first Insertedsecondsecond" Is this normal behavior? because I am