I have a data with array in mongodb collection
"data": [
[
"FA3T1",
16
]
]
Can anyone please suggest what would be the datatype to be mentioned in c# for the data to get deserialized.
I have tried the below options but it doesnt seem to work
List<object> data {get;set;}
or
ArrayList data {get;set;}
datanull?List<List<object>>.