public Class Object1 {
int property1
string property2
datatime property3
}
// post method
public virtual void ControllerAction1(Object1[] listOfObjects){
}
I am tryign to pass an array of type object1 to the controller method. The client side sends the array in json format. But parameter listOfObjects is null.