C Program Using System Using Systemcollectionsgeneric Using Systemlinq Using Systemtext Us Q37079245

// C# Program

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Threading;

namespace LINQTestProblems
{
   class Program
   {

       /// <summary>
       /// This method takes a list ofnumbers, filters them to all evens,
       /// multiplies by 5, makes sure notexceed 50, then squares them.
       /// </summary>
       /// <paramname=”input”>IEnumerable of incomingintegers</param>
       /// <returns>IEnumerable offiltered items</returns>
       static IEnumerable<int>filterElements(IEnumerable<int> input)
       {

       }

       /// <summary>
       /// This method takes two lists ofnumbers. The first list (input1) should be filtered
       /// to even numbers. The secondlist (input2) should be filtered to odd numbers. Then
       /// merge both lists

OR
OR

Leave a Comment

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