I am trying to check, if the name of the sheet already is in the other workbook. I am currently trying it like this:
if (tempWb.Worksheets.Names.Contains(ibbWs.Worksheets[index].Name))
{
...
}
How can I fix that or convert a string into a Aspose.Cells.Name object?