Multiselect dropdown has values - One, Two, Three, Four
and we need to select these options by sending values in c#
I am using below method to add values
cellsToAdd[cellCount] = new Cell.AddCellBuilder(columns[cellCount], true).SetValue(new List<string> { "One", "Two" }).SetStrict(true).Build();
It throws error of unable parse to request
Same goes for string array
And if used plane string - "One,Two", it creates new option in the Smartsheet.
options is not working with this specific Smartsheet NuGet version (2.126.0) - System.Collections.Generic.List<Smartsheet.Api.Models.Option> options = new System.Collections.Generic.List<Smartsheet.Api.Models.Option>();