Will upgrading break my application?

I have developed a relatively large application using Aspose.Excel version 3.5.3.3.

If I upgrade to the latest version, will this have any impact on my application?

This is a very important issue as I’m about to start a new application and am trying to decide on whether I should use the latest version or not.

Thanks.

No big differences for upgrading. You only need to do:

1. Update to a new product name: http://www.aspose.com/Wiki/default.aspx/Aspose.Purchase/HowToUpdateProductName.html.

2. In old Aspose.Excel version, to set color for a cell, you only need to call:

cell.Style.ForegroundColor = Color.Blue;

Now you should add a line of code after that:

cell.Style.ForegroundColor = Color.Blue;

cell.Style.Pattern = BackgroundType.Solid;