Using a custom class Customer.
I have not implemented iEumerable.
Also i have not overridden the methods MoveNext(), Reset() of iEnumerator.
But i am able to use foreach to iterate through customers collection. And able to query using linq where clause.
I am not able to understand how we are able to get these foreach and linq features without implementing any methods in the below example.
Please help me to understand how this works.
I have not implemented iEumerable.
Also i have not overridden the methods MoveNext(), Reset() of iEnumerator.
But i am able to use foreach to iterate through customers collection. And able to query using linq where clause.
I am not able to understand how we are able to get these foreach and linq features without implementing any methods in the below example.
Please help me to understand how this works.
C#:
public class Customer
{
public string Name { get; set; }
public string City { get; set; }
public string Mobile { get; set; }
}
// in main method
Customer[] customers = new Customer[]
{
new Customer {Name="Raj Kumar", City="Bangalore", Mobile="9599999123"},
new Customer { Name = "Sudhir Wadje", City = "Bhubaneswar", Mobile = "9488888321" },
new Customer { Name = "Anil", City = "Delhi", Mobile = "8077777987" }
};
IEnumerable<Customer> result = from cust in customers where (cust.City.StartsWith("B")) select cust;
foreach (Customer customer in result)
{
Console.WriteLine(customer.City);
}
Last edited by a moderator: