I\'m trying to pass an array of objects into an MVC controller method using jQuery\'s ajax() function. When I get into the PassThing() C# controller method, the argument \"t
If you are using ASP.NET Web API then you should just pass data: JSON.stringify(things).
data: JSON.stringify(things)
And your controller should look something like this:
public class PassThingsController : ApiController { public HttpResponseMessage Post(List things) { // code } }