Towards Dev

A publication for sharing projects, ideas, codes, and new theories.

Follow publication

LINQ OPERATOR — WHERE

Jordan T Kay
Towards Dev
Published in
1 min readMar 27, 2023

--

WHERE OPERATION — Allows us to sort an existing collection and create a new collection based on some condition
→ returns a IEnumerable

OBJECTIVE:
Sort through the collection names[] and create a separate collection with each name that is longer than 4 characters. Then print those values.

public string[] names = {"jon","jon","julie","jessie","mark","matt","jordan"};

void Start()
{
var result = names.where(n => n.Length > 5); //STEP ONE

foreach(var name in result) //STEP TWO
{
Debug.Log("Name: " + name);
}
}

STEP ONE — Use the where operator to return an IEnumerable with a collection of names that are longer than 4 characters
→ Can be read as: where variable(n) in array(names) meets condition(longer than 4 characters)
→ All elements that match the condition are then placed within our IEnumerable Variable result

STEP TWO — Prints each name in the new IEnumarable Collection

LINQ OPERATIONS

ANY OPERATION
Filters through a collection to determine if each element in the collection satisfy a specified condition.

CONTAINS OPERATOR
Similar to the Any Operator in that is also makes sure something exists in a array/list.

DISTINCT OPERATION
Filters through an array/list to remove any duplicate values.

OrderByDescending OPERATOR
Sorts values in a collection ina descending order

Free

Distraction-free reading. No ads.

Organize your knowledge with lists and highlights.

Tell your story. Find your audience.

Membership

Read member-only stories

Support writers you read most

Earn money for your writing

Listen to audio narrations

Read offline with the Medium app

--

--

Published in Towards Dev

A publication for sharing projects, ideas, codes, and new theories.

Written by Jordan T Kay

Join my journey into game development with Unity. Learning all I can to produce quality games. 🚀

Write a response