Does anyone know the difference between it? When should I use IList
and List
Follow the code below:
IList:
public ActionResult Upload_Photo(IList<HttpPostedFileBase> file_photo)
List:
public ActionResult Upload_Photo(List<HttpPostedFileBase> file_photo)
Some say it's considered bad to expose Lista <T>
. Why?