I’m trying to write to a specific cell in a Google spreadsheet using C# without having to search every single cell and see if it is the right cell. For example, I don’t want to have to search to see if “A1” is in the title of all the cells in a worksheet in order to write to A1. In other programming languages (python) I’ve found plenty of examples of how to do this, but I can’t find the same methods in C#. How can I do something like:
cell[1,1].value = "JoMama";
1 Answer