CombinatorialRangeAttribute Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
| Name | Description |
|---|---|
| CombinatorialRangeAttribute(Int32, Int32) |
Initializes a new instance of the CombinatorialRangeAttribute class. |
| CombinatorialRangeAttribute(UInt32, UInt32) |
Initializes a new instance of the CombinatorialRangeAttribute class. |
| CombinatorialRangeAttribute(Int32, Int32, Int32) |
Initializes a new instance of the CombinatorialRangeAttribute class. |
| CombinatorialRangeAttribute(UInt32, UInt32, UInt32) |
Initializes a new instance of the CombinatorialRangeAttribute class. |
CombinatorialRangeAttribute(Int32, Int32)
Initializes a new instance of the CombinatorialRangeAttribute class.
public CombinatorialRangeAttribute(int from, int count);
new Microsoft.VisualStudio.TestTools.UnitTesting.Combinatorial.CombinatorialRangeAttribute : int * int -> Microsoft.VisualStudio.TestTools.UnitTesting.Combinatorial.CombinatorialRangeAttribute
Public Sub New (from As Integer, count As Integer)
Parameters
- from
- Int32
The value at the beginning of the range.
- count
- Int32
The positive number of consecutive values to include.
Applies to
CombinatorialRangeAttribute(UInt32, UInt32)
Important
This API is not CLS-compliant.
Initializes a new instance of the CombinatorialRangeAttribute class.
[System.CLSCompliant(false)]
public CombinatorialRangeAttribute(uint from, uint count);
[<System.CLSCompliant(false)>]
new Microsoft.VisualStudio.TestTools.UnitTesting.Combinatorial.CombinatorialRangeAttribute : uint32 * uint32 -> Microsoft.VisualStudio.TestTools.UnitTesting.Combinatorial.CombinatorialRangeAttribute
Public Sub New (from As UInteger, count As UInteger)
Parameters
- from
- UInt32
The value at the beginning of the range.
- count
- UInt32
The positive number of consecutive values to include.
- Attributes
Applies to
CombinatorialRangeAttribute(Int32, Int32, Int32)
Initializes a new instance of the CombinatorialRangeAttribute class.
public CombinatorialRangeAttribute(int from, int to, int step);
new Microsoft.VisualStudio.TestTools.UnitTesting.Combinatorial.CombinatorialRangeAttribute : int * int * int -> Microsoft.VisualStudio.TestTools.UnitTesting.Combinatorial.CombinatorialRangeAttribute
Public Sub New (from As Integer, to As Integer, step As Integer)
Parameters
- from
- Int32
The value at the beginning of the range.
- to
- Int32
The inclusive value at the end of the range.
- step
- Int32
The non-zero amount by which each value changes.
Applies to
CombinatorialRangeAttribute(UInt32, UInt32, UInt32)
Important
This API is not CLS-compliant.
Initializes a new instance of the CombinatorialRangeAttribute class.
[System.CLSCompliant(false)]
public CombinatorialRangeAttribute(uint from, uint to, uint step);
[<System.CLSCompliant(false)>]
new Microsoft.VisualStudio.TestTools.UnitTesting.Combinatorial.CombinatorialRangeAttribute : uint32 * uint32 * uint32 -> Microsoft.VisualStudio.TestTools.UnitTesting.Combinatorial.CombinatorialRangeAttribute
Public Sub New (from As UInteger, to As UInteger, step As UInteger)
Parameters
- from
- UInt32
The value at the beginning of the range.
- to
- UInt32
The inclusive value at the end of the range.
- step
- UInt32
The positive amount by which each value changes.
- Attributes