A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://www.geeksforgeeks.org/c-sharp/list-findindex-method-in-c-sharp-with-examples/ below:

List.FindIndex() Method in C# with Examples

List.FindIndex() Method in C# with Examples

Last Updated : 11 Jul, 2025

List<T>.FindIndex Method is used to search for an element that matches the conditions defined by a specified predicate and returns the index of the first occurrence within the List<T>. If an item that matches the conditions is not found then this method will return -1. There are 3 methods in the overload list of this method as follows:

  1. FindIndex(Predicate<T>)Method
  2. FindIndex(Int32,Predicate<T>)Method
  3. FindIndex(Int32, Int32, Predicate<T>) Method
FindIndex(Predicate<T>) Method

This method is used to search for an element that matches the conditions defined by the specified predicate and returns the zero-based index of the first occurrence within the entire List<T>.

Syntax: public int FindIndex (Predicate<T> match);

Parameter:

match: It is the Predicate<T> delegate that defines the conditions of the element to search for.

Return Value: It returns the index of the first occurrence of an element that matches the conditions defined by the match, if found. If not found it returns -1. Exception: This method will give ArgumentNullException if the match is null.

Example: 

csharp
// C# program to demonstrate the use of
// List<T>.FindIndex (Predicate <T>) method
using System;
using System.Collections.Generic;

class GFG1 : IComparable {

	public String gg
	{
		get;
		set;
	}

	public int CompareTo(Object o)
	{
		GFG1 e = o as GFG1;
		if (e == null)
			throw new ArgumentException("Not valid object");

		return gg.CompareTo(e.gg);
	}
}

class GFG2 {

	String s;

	public GFG2(String ss)
	{
		s = ss;
	}

	public bool StartsWith(GFG1 e)
	{
		return e.gg.StartsWith(s, StringComparison.InvariantCultureIgnoreCase);
	}
}

// Driver Class
class GFG3 {

	// Main Method
	public static void Main()
	{
		var e = new List<GFG1>();

		// List elements
		e.AddRange(new GFG1[] {
			new GFG1{
				gg = "c",
			},

			new GFG1{
				gg = "c++",
			},
			new GFG1{
				gg = "java",
			},
			new GFG1{
				gg = "C#",
			},
			new GFG1{
				gg = "Python",
			},
			new GFG1{
				gg = "Perl",
			},
		});

		e.Sort();
		// sorts the list

		var es = new GFG2("C");
		Console.WriteLine("'C' starts at index "
				+ e.FindIndex(es.StartsWith));

		es = new GFG2("P");
		Console.WriteLine("'P' starts at index " + 
					e.FindIndex(es.StartsWith));
	}
}

Output
'C' starts at index 0
'P' starts at index 4
FindIndex(Int32, Predicate<T>) Method

This method searches for an element which matches the conditions defined by the specified predicate and returns the index of the first occurrence within the range of elements in the List which extends from the specified index to the last element.

Syntax:

public int FindIndex (int startIndex, Predicate<T> match);

Parameter:

Return Value: This method will return the index of the first occurrence of an element that matches the conditions defined by "match", if found. If not found it returns -1. Exceptions:

Example: 

csharp
// C# program to demonstrate the use of
// List<T>.FindIndex (Int32, Predicate <T>) method
using System;
using System.Collections.Generic;

class GFG1 : IComparable {

    public String gg
    {
        get;
        set;
    }

    public int CompareTo(Object o)
    {
        GFG1 e = o as GFG1;

        return gg.CompareTo(e.gg);
    }
}

class GFG2 {

    String s;

    public GFG2(String ss) { s = ss; }

    public bool StartsWith(GFG1 e)
    {
        return e.gg.StartsWith(
            s, StringComparison.InvariantCultureIgnoreCase);
    }
}

// Driver Class
class GFG3 {

    // Main Method
    public static void Main()
    {
        var e = new List<GFG1>();

        // List elements
        e.AddRange(new GFG1[] {
            new GFG1{
                gg = "c",
            },
            new GFG1{
                gg = "Python",
            },
            new GFG1{
                gg = "Java",
            },
            new GFG1{
                gg = "C#",
            },
            new GFG1{
                gg = "Java",
            },
            new GFG1{
                gg = "Perl",
            },
        });

        // sorts the list
        e.Sort();

        var es = new GFG2("C");

        // Search for c start from index 1
        Console.WriteLine("Search for 'C' starts at index "
                          + e.FindIndex(1, es.StartsWith));

        es = new GFG2("J");

        // search for j starts from index 2
        Console.WriteLine("Search for 'J' starts at index "
                          + e.FindIndex(2, es.StartsWith));
    }
}

Output
Search for 'C' starts at index 1
Search for 'J' starts at index 2
FindIndex(Int32, Int32, Predicate<T>) Method

This method searches for an element which matches the conditions defined by the specified predicate and returns the zero-based index of the first occurrence within the range of elements in the List that starts at the specified index and contains the specified number of elements.

Syntax

public int FindIndex (int startIndex, int count, Predicate<T> match);

Parameters:

Return Value: This method will return the index of the first occurrence of an element that matches the conditions defined by "match", if found. If not found it returns -1. Exceptions:

Example: 

csharp
// C# program to demonstrate the use of 
// List<T>.FindIndex (Int32, Int32, 
// Predicate <T>) method
using System;
using System.Collections.Generic;

class GFG1 : IComparable {

	public String gg
	{
		get;
		set;
	}

	public int CompareTo(Object o)
	{
		GFG1 e = o as GFG1;

		return gg.CompareTo(e.gg);
	}
}

class GFG2 {

	String s;

	public GFG2(String ss)
	{
		s = ss;
	}

	public bool StartsWith(GFG1 e)
	{
		return e.gg.StartsWith(s, StringComparison.InvariantCultureIgnoreCase);
	}
}

// Driver Class
class GFG3 {

	// Main Method
	public static void Main()
	{
		var e = new List<GFG1>();

		// List elements
		e.AddRange(new GFG1[] {

			new GFG1{
				gg = "c",
			},
			new GFG1{
				gg = "Python",
			},
			new GFG1{
				gg = "C++",
			},
			new GFG1{
				gg = "Java",
			},
			new GFG1{
				gg = "C#",
			},
			new GFG1{
				gg = "Perl",
			},
		});

		// sorts the list
		e.Sort();
		
		var es = new GFG2("C");

		// search for c start from index 1
		// count is 2 here
		Console.WriteLine("Search for 'C' starts at index "
					+ e.FindIndex(0, 2, es.StartsWith));
		
		es = new GFG2("J");

		// search for j starts from index 2
		// count is 4 here
		Console.WriteLine("Search for 'J' starts at index "
					+ e.FindIndex(2, 4, es.StartsWith));
		
	}
}

Output
Search for 'C' starts at index 0
Search for 'J' starts at index 3

Reference:



RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4