I have this function:
$.ajax({
type:"post",
url:"/Home2/test01",
data: procesoData,
succes: function(datos){
$("#DatosRespuesta").html(datos);
}
);
where processData corresponds to a list of data:
var procesoData = { 'items':[ ] }
My question is how can I work with them (receive the parameter as a list) in an MVC 5 controller in C#? Any help would be nice, thanks.