2
Answers

Interface reference varibles.

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)