This method is used to retrieve all the elements that match the conditions defined by the specified predicate.
Syntax:
public static T[] FindAll (T[] array, Predicate match);
Here, T is the type of element of the array.
Parameters:
array: It is the one-dimensional, zero-based array to search.
match: It is the predicate that defines the conditions of the element to search for.
Return Value: This method return an array containing all elements that matches the conditions defined by the specified predicate if it is found. Otherwise, it returns an empty array.
Exception: This method throws ArgumentNullException if the array is null or match is null.
Below programs illustrate the use of Array.FindAll(T[], Predicate) Method:
Example 1:
CSharp
using System;
using System.Collections.Generic;
public class GFG {
public static void Main()
{
try {
String[] myArr = { "Sun" , "Mon" , "Tue" , "Sat" };
Console.WriteLine( "Initial Array:" );
PrintIndexAndValues(myArr);
String[] value = Array.FindAll(myArr,
element => element.StartsWith( "S" ,
StringComparison.Ordinal));
Console.WriteLine( "Elements are: " );
PrintIndexAndValues(value);
}
catch (ArgumentNullException e) {
Console.Write( "Exception Thrown: " );
Console.Write( "{0}" , e.GetType(), e.Message);
}
}
public static void PrintIndexAndValues(String[] myArr)
{
for ( int i = 0; i < myArr.Length; i++) {
Console.WriteLine( "{0}" , myArr[i]);
}
Console.WriteLine();
}
}
|
Output:
Initial Array:
Sun
Mon
Tue
Sat
Elements are:
Sun
Sat
Example 2:
CSharp
using System;
using System.Collections.Generic;
public class GFG {
public static void Main()
{
try {
String[] myArr = null ;
Console.WriteLine( "Trying to get the element from a null array" );
Console.WriteLine();
String[] value = Array.FindAll(myArr,
element => element.StartsWith( "S" ,
StringComparison.Ordinal));
Console.WriteLine( "Elements are: " );
PrintIndexAndValues(value);
}
catch (ArgumentNullException e) {
Console.Write( "Exception Thrown: " );
Console.Write( "{0}" , e.GetType(), e.Message);
}
}
public static void PrintIndexAndValues(String[] myArr)
{
for ( int i = 0; i < myArr.Length; i++) {
Console.WriteLine( "{0}" , myArr[i]);
}
Console.WriteLine();
}
}
|
Output:
Trying to get the element from a null array
Exception Thrown: System.ArgumentNullException
Reference:
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
03 Feb, 2023
Like Article
Save Article