【发布时间】:2015-12-09 15:54:41
【问题描述】:
“解析值时遇到意外字符:<.path line position>
我不断从下面的代码中收到错误。
Sheet _TempSheet = _SmartsheetClient.SheetResources.GetSheet((long)_SheetID, null, null, null, null, null, null, null);
List<long> RowsToDeleteIDs = new List<long>();
foreach (Row _Row in _TempSheet.Rows)
{
RowsToDeleteIDs.Add((long)_Row.Id);
Console.WriteLine("Row: " + _Row.Id);
}
_SmartsheetClient.SheetResources.RowResources.DeleteRows((long)_SheetID, RowsToDeleteIDs, true);
【问题讨论】:
标签: c# api smartsheet-api smartsheet-c#-sdk-v2