ComponentOne FinancialChart for WPF
C1.WPF Namespace / TypeEx Class / IsNumericIntegralUnsigned Method
Type.



In This Topic
    IsNumericIntegralUnsigned Method
    In This Topic
    Returns true if the type is any of the integral unsigned numeric data types: uint, ulong, ushort and byte.
    Syntax
    'Declaration
     
    
    <ExtensionAttribute()>
    Public Shared Function IsNumericIntegralUnsigned( _
       ByVal type As Type _
    ) As Boolean
    'Usage
     
    
    Dim type As Type
    Dim value As Boolean
     
    value = TypeEx.IsNumericIntegralUnsigned(type)
    [Extension()]
    public static bool IsNumericIntegralUnsigned( 
       Type type
    )
    [Extension()]
    public:
    static bool IsNumericIntegralUnsigned( 
       Type^ type
    ) 

    Parameters

    type
    Type.

    Return Value

    True if the type is an unsigned integral numeric.
    See Also