Using the sample data here loop through publishers and then usea LINQ query to identify games that have a developer namedSusan.
Print the Publisher name, game name, and list of developers forthe game for the above matching games.
You MUST use a LINQ query, simply outputting the correct resultswill not earn credit.
using System;using System.Collections.Generic;using System.Linq;namespace SampleDataForFinal{class Program{static void Main(string[] args){Developer Mary = new Developer { Name = “Mary” };Developer Patricia = new Developer { Name = “Patricia” };Developer Jennifer = new Developer { Name = “Jennifer” };Developer Linda = new Developer { Name = “Linda” };Developer Elizabeth = new Developer { Name
OR
OR