It is necessary to get information from the Google table using apis v4 for c #. In their example, they have a simple request for a specific range of cells.
// Define request parameters. String spreadsheetId = "1BxiMVs0XRA5nFMdKvBdBZjgmUUqptlbs74OgvE2upms"; String range = "Class Data!A2:E"; SpreadsheetsResource.ValuesResource.GetRequest request = service.Spreadsheets.Values.Get(spreadsheetId, range); In the range line we pass our range. But the problem is that you need to get a combined range. For example: 
Does anyone have an example of this batchGet request for c #?
