C#C
C#4y ago
Raki

Diff between the Ilist and List

  • IList<int> res = new List<int>();
  • List<int> res = new List<int>();
    what is the difference between the both which is considered as best practice.
Was this page helpful?