IList vs List, main difference [duplicate]

0

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?

    
asked by anonymous 22.08.2017 / 21:57

0 answers