I\'ve been using Google Sheets API, and following The Google Guide. However there is no example, even beyond the second page of google, to add a worksheet and write to a new she
Further extending Sam's answer. The following gets me to update a cell.
ValueRange VRx = new ValueRange(); IList> xx = new List>(); xx.Add(new List { "test" }); VRx.Values = xx; SpreadsheetsResource.ValuesResource.UpdateRequest update = service.Spreadsheets.Values.Update(VRx, spreadsheetId, "back!A19"); update.ValueInputOption = SpreadsheetsResource.ValuesResource.UpdateRequest.ValueInputOptionEnum.RAW; UpdateValuesResponse result = update.Execute();
Hope this helps!