• Javascript
  • Python
  • Go
Tags: c# foreach

Using the foreach Keyword on Custom Objects in C#

The foreach keyword in C# is a powerful tool for iterating through collections of data. It allows developers to easily access and manipulate...

The foreach keyword in C# is a powerful tool for iterating through collections of data. It allows developers to easily access and manipulate each element in a collection without the need for complex indexing or iteration logic. While it is commonly used on built-in data types such as arrays and lists, it can also be used on custom objects. In this article, we will explore how to use the foreach keyword on custom objects in C#.

Firstly, let's define what a custom object is in C#. A custom object is a user-defined type that encapsulates data and behavior. It is created using the class keyword and can have properties, methods, and constructors, just like any other class. For the purpose of this article, we will use a simple custom object called "Person" that has two properties - name and age.

To use the foreach keyword on a custom object, we first need to have a collection of these objects. This can be achieved by creating an array, list, or any other type of collection that can hold our custom objects. In our example, we will create an array of Person objects.

Person[] people = new Person[]

{

new Person("John", 25),

new Person("Mary", 30),

new Person("David", 40)

};

Now that we have our collection of Person objects, we can use the foreach keyword to iterate through them. The syntax for using foreach on a custom object is the same as for built-in types, with the only difference being the object type. We use the "var" keyword to declare a variable that will hold each element of the collection as we iterate through it.

foreach (var person in people)

{

//access and manipulate each person object here

}

Inside the foreach loop, we can access the properties of each person object using the dot notation. For example, we can print out the name and age of each person like this:

Console.WriteLine($"Name: {person.Name}, Age: {person.Age}");

This will print out the following:

Name: John, Age: 25

Name: Mary, Age: 30

Name: David, Age: 40

As you can see, the foreach loop automatically assigns each element of the collection to the "person" variable, making it easy for us to access and manipulate the properties of each object.

One of the advantages of using the foreach keyword on custom objects is that it simplifies the code and makes it more readable. Imagine if we had to manually iterate through the array using a for loop and index each element to access its properties. This would not only be tedious but also prone to errors.

Furthermore, the foreach loop also provides a cleaner way to filter and manipulate the collection. For example, if we only wanted to print out the details of people above the age of 30, we can use an if statement inside the foreach loop to check for this condition before printing out the details.

foreach (var person in people)

{

if (person.Age > 30)

{

Console.WriteLine($"Name: {person.Name}, Age: {person.Age}");

}

}

This will print out:

Name: Mary, Age: 30

Name: David, Age: 40

In conclusion, the foreach keyword is a convenient and efficient way to iterate through collections of custom objects in C#. It simplifies the code, makes it more readable, and provides a cleaner way to filter and manipulate the collection. As a

Related Articles