Using Sample Data Loop Publishers Use Linq Query Identify Games Developer Named Susan Prin Q37088338

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

Leave a Comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.