adTempus API
ArcanaDevelopment.adTempus.Shared Namespace / EnumHelpers Class / IsIn<T> Method


In This Topic
    IsIn<T> Method
    In This Topic
    Syntax
    'Declaration
     
    
    <ExtensionAttribute()>
    <PureAttribute()>
    Public Shared Function IsIn(Of T As {New, Struct})( _
       ByVal target As T, _
       ByVal ParamArray values() As T _
    ) As Boolean
    [Extension()]
    [Pure()]
    public static bool IsIn<T>( 
       T target,
       params T[] values
    )
    where T: new(), struct
    [Extension()]
    [Pure()]
    public:
    static bool IsIngeneric<typename T>
    ( 
       T^ target,
       ... array<T^>^ values
    ) 
    where T: gcnew(), value class

    Parameters

    target
    values

    Type Parameters

    T
    See Also