Spreadsheet – Breaking Change in v19.2

ctodx
21 June 2019

In the upcoming release of .NET Standard 2.1, Microsoft is going to introduce a new Range structure in the System namespace.

All well and good, but since our Spreadsheet API already contains the DevExpress.Spreadsheet.Range interface, you will get the following error when compiling your spreadsheet application under .NET Standard 2.1:

error CS0104: 'Range' is an ambiguous reference between 'DevExpress.Spreadsheet.Range' and 'System.Range'

Now the obvious workaround fix is to use the following code

using Range = DevExpress.Spreadsheet.Range;

but that's not going to help new customers or even you when writing new applications. Hence, in order to fix this issue properly, we've decided to rename our DevExpress.Spreadsheet.Range interface to DevExpress.Spreadsheet.CellRange in the next major release, v19.2. This change will affect all DevExpress Spreadsheet products:

Once v19.2 has been released and you have upgraded to it, you will need to update your projects to use the CellRange name.

Free DevExpress Products - Get Your Copy Today

The following free DevExpress product offers remain available. Should you have any questions about the free offers below, please submit a ticket via the DevExpress Support Center at your convenience. We'll be happy to follow-up.
No Comments

Please login or register to post comments.