ObjectExtensionsInT(T, T) Method

Gets whether item is among the elements of set.

Definition

Namespace: KGySoft.CoreLibraries
Assembly: KGySoft.CoreLibraries (in KGySoft.CoreLibraries.dll) Version: 9.0.0-preview.1
C#
public static bool In<T>(
	this T item,
	params T[]? set
)

Parameters

item  T
The item to search for in set.
set  T
The set of items in which to search the specified item.

Type Parameters

T
The type of item and the set elements.

Return Value

Boolean
if item is among the elements of set; otherwise, .

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type T. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).

Remarks

This method works similarly to the in operator in SQL and Pascal.

This overload uses generic IEqualityComparerT implementations to compare the items for the best performance.

  Note

If elements of set are complex expressions consider to use the InT(T, FuncT) overload instead to prevent evaluating all elements until they are actually compared.

Example

C#
using System;
using KGySoft.CoreLibraries;

public class Example
{
    public static void Main()
    {
        string stringValue = "blah";

        // standard way:
        if (stringValue == "something" || stringValue == "something else" || stringValue == "maybe some other value" || stringValue == "or...")
            DoSomething();

        // In method:
        if (stringValue.In("something", "something else", "maybe some other value", "or..."))
            DoSomething();
    }
}

See Also