2
Answers

Interface reference varibles.

Sandeep Kumar

Sandeep Kumar

7y
133
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)