Sandeep Kumar

Sandeep Kumar

  • NA
  • 18
  • 414

Interface reference varibles.

Dec 31 2017 1:58 AM
What is the difference between the below 2 statements and when to use what?
 
1) IList<string> stdList = new List<string>();
 
2) List<string> stdList = new List<string>(); 
 
 
 
 

Answers (2)