Share via


Numeric<T> Class

Represents the base class from which all the data generators for numeric values are derived.

Namespace:  Microsoft.Data.Schema.Generators.Sql
Assembly:  Microsoft.Data.Schema.Generators.Sql (in Microsoft.Data.Schema.Generators.Sql.dll)

Syntax

'Declaration
<CLSCompliantAttribute(True)> _
Public MustInherit Class Numeric(Of T As IComparable) _
    Inherits Generator
'Usage
Dim instance As Numeric(Of T)
[CLSCompliantAttribute(true)]
public abstract class Numeric<T> : Generator
where T : IComparable
[CLSCompliantAttribute(true)]
generic<typename T>
where T : IComparable
public ref class Numeric abstract : public Generator
JScript does not support generic types or methods.
[<AbstractClassAttribute>]
[<CLSCompliantAttribute(true)>]
type Numeric<'T when 'T : IComparable> =  
    class
        inherit Generator
    end

Type Parameters

  • T

Remarks

Do not inherit directly from this class.

Inheritance Hierarchy

System.Object
  Microsoft.Data.Schema.DataGenerator.Generator
    Microsoft.Data.Schema.Generators.Sql.Numeric<T>
      Microsoft.Data.Schema.Generators.Sql.BigInt
      Microsoft.Data.Schema.Generators.Sql.DatabaseDecimal
      Microsoft.Data.Schema.Generators.Sql.DatabaseFloat
      Microsoft.Data.Schema.Generators.Sql.DatabaseReal
      Microsoft.Data.Schema.Generators.Sql.Int
      Microsoft.Data.Schema.Generators.Sql.Money
      Microsoft.Data.Schema.Generators.Sql.SmallInt
      Microsoft.Data.Schema.Generators.Sql.TinyInt

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

See Also

Reference

Numeric<T> Members

Microsoft.Data.Schema.Generators.Sql Namespace