SteveWinward / GoogleSheetsWrapper

Google Sheets API .NET Wrapper Library
MIT License
48 stars 13 forks source link

SheetHelper.GetRows() can return null, but the return type is not considered nullable #24

Closed HughMacdonald closed 12 months ago

HughMacdonald commented 12 months ago

If there is no data in the sheet in the requested range, GetRows() can sometimes return null, but the method itself is set to return IList<IList<object>>, rather than IList<IList<object>>?

HughMacdonald commented 12 months ago

The same, I'm presuming, goes for GetRowsFormatted(), even though I'm not using that one myself.