Can someone tell me which one is more efficient between List and int[]. Because I am working on a project and as you might know efficien
List
int[]
If you plan on using any features that a list would provide (searching, sorting, removing, resizing) then I would go with a list because chances are these functions are very optimized already and you won't be able to write better versions of them.