What is aggregation in C#?



Aggregation is a directional relation between objects in C#. It is the relationship between objects.

For example, Employee and Address

An Employee is associated with a single Department, whereas a Department can have more than one employee. Let us see an example of Employee and Address −

public class Address {
   . . .
}

public class Employee {

   private Address addr;

   public Employee (Address addr) {

      this.addr = addr;

   }

   . . .

}
Updated on: 2020-06-20T13:15:21+05:30

382 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements