2
Answers

Interface reference varibles.

Photo of Sandeep Kumar

Sandeep Kumar

7y
517
1
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)