ElementAtOrDefault

In this chapter you will learn:

  1. How to use ElementAtOrDefault opeator

Get to know ElementAtOrDefault operator

ElementAtOrDefault tries to get the value at specific position, if not found it will return a default value for the given data type.

using System;/*from   j a  v  a2 s.  c  om*/
using System.Collections;
using System.Collections.Generic;
using System.Text;
using System.Linq;

public class MainClass{
   public static void Main(){
            int[] numbers = {1, 2, 3, 4, 5, 6, 7, 8, 9};
            var query = numbers.ElementAtOrDefault(9);
            Console.Write(query);
   }
}

Next chapter...

What you will learn in the next chapter:

  1. How to use Empty operator
Home » C# Tutorial » Linq Operators
Aggregate
Aggregate with seed
Aggregate string value
All
Any
Average
Cast
Concat
Contains
Count
DefaultIfEmpty
Distinct
ElementAt
ElementAtOrDefault
Empty
Except
FindAll
First
FirstOrDefault
GroupBy
Intersect
Last
LastOrDefault
LongCount
Max
Min
OfType
OrderBy
OrderByDescending
Range
Repeat
Reverse
SelectMany
SequenceEqual
Single
SingleOrDefault
Skip
SkipWhile
Sum
Take
TakeWhile
ThenBy
ThenByDescending
ToArray
ToList
Zip