V C# je agregácia proces, v ktorom jedna trieda definuje inú triedu ako ľubovoľný odkaz na entitu. Je to ďalší spôsob opätovného použitia triedy. Je to forma asociácie, ktorá predstavuje vzťah HAS-A.
Príklad agregácie C#
Pozrime sa na príklad agregácie, kde trieda Zamestnanec má odkaz na triedu Adresa ako dátový člen. Takýmto spôsobom môže znovu použiť členov triedy Address.
using System; public class Address { public string addressLine, city, state; public Address(string addressLine, string city, string state) { this.addressLine = addressLine; this.city = city; this.state = state; } } public class Employee { public int id; public string name; public Address address;//Employee HAS-A Address public Employee(int id, string name, Address address) { this.id = id; this.name = name; this.address = address; } public void display() { Console.WriteLine(id + ' ' + name + ' ' + address.addressLine + ' ' + address.city + ' ' + address.state); } } public class TestAggregation { public static void Main(string[] args) { Address a1=new Address('G-13, Sec-3','Noida','UP'); Employee e1 = new Employee(1,'Sonoo',a1); e1.display(); } }
Výkon:
1 Sonoo G-13 Sec-3 Noida UP