TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Chintan Dave
NA
67
37k
IEnumerable Interface
Aug 29 2018 5:35 AM
Suppose I have one list of strings in my main method. I can use foreach loop with lstMonth directly.
static void Main(string[] args)
{
List<string> lstMonth = new List<string>();
Month.Add("January");
Month.Add("February");
Month.Add("March");
Month.Add("April");
Month.Add("May");
Month.Add("June");
Month.Add("July");
Month.Add("August");
Month.Add("September");
Month.Add("October");
Month.Add("November");
Month.Add("December");
// First Loop
foreach(string str1 in lstMonth)
{
Console.WriteLine(str1);
}
}
Another method for reiterating through lstMonth is as below
IEnumerable<string> iEnumerableOfString = (IEnumerable<string>)Month;
// Second Loop
foreach(string AllMonths in iEnumerableOfString)
{
Console.WriteLine(AllMonths);
}
Reference Link : https://www.c-sharpcorner.com/UploadFile/219d4d/ienumerable-vs-ienumerator-in-C-Sharp/
Question: What is the difference between foreach loop of list of strings (First Loop) vs IEnumerable (Second Loop) ?
Do we get any advantage if we use second loop in terms of performance or any other ways ? If yes then please mention those ?
If no then why should we use it?
Reply
Answers (
2
)
I Want Popup For Geoserver Polygon Layer In My Aspx.Page
Stuck with CheckedListBox