Numeric Generic Class

An abstract base class from which all the data generators for numeric values are derived. This class is not intended to be inherited from directly. Implementation details for this class are all internal. Only the interfaces are public.

Namespace: Microsoft.VisualStudio.TeamSystem.Data.Generators
Assembly: Microsoft.VisualStudio.TeamSystem.Data.Generators (in microsoft.visualstudio.teamsystem.data.generators.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
J# supports the use of generic types and methods, but not the declaration of new ones.
JScript does not support generic types and methods.

Inheritance Hierarchy

System.Object
   Microsoft.VisualStudio.TeamSystem.Data.DataGenerator.Generator
    Microsoft.VisualStudio.TeamSystem.Data.Generators.Numeric
       Derived Classes

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 Members
Microsoft.VisualStudio.TeamSystem.Data.Generators Namespace