CombinatorialRangeAttribute Konstruktory
Definicja
Ważne
Niektóre informacje odnoszą się do produktu w wersji wstępnej, który może zostać znacząco zmodyfikowany przed wydaniem. Firma Microsoft nie udziela żadnych gwarancji, jawnych lub domniemanych, w odniesieniu do informacji podanych w tym miejscu.
Przeciążenia
| Nazwa | Opis |
|---|---|
| CombinatorialRangeAttribute(Int32, Int32) |
Inicjuje nowe wystąpienie klasy CombinatorialRangeAttribute. |
| CombinatorialRangeAttribute(UInt32, UInt32) |
Inicjuje nowe wystąpienie klasy CombinatorialRangeAttribute. |
| CombinatorialRangeAttribute(Int32, Int32, Int32) |
Inicjuje nowe wystąpienie klasy CombinatorialRangeAttribute. |
| CombinatorialRangeAttribute(UInt32, UInt32, UInt32) |
Inicjuje nowe wystąpienie klasy CombinatorialRangeAttribute. |
CombinatorialRangeAttribute(Int32, Int32)
Inicjuje nowe wystąpienie klasy CombinatorialRangeAttribute.
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)
Parametry
- from
- Int32
Wartość na początku zakresu.
- count
- Int32
Dodatnia liczba kolejnych wartości do uwzględnienia.
Dotyczy
CombinatorialRangeAttribute(UInt32, UInt32)
Ważne
Ten interfejs API nie jest zgodny ze specyfikacją CLS.
Inicjuje nowe wystąpienie klasy CombinatorialRangeAttribute.
[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)
Parametry
- from
- UInt32
Wartość na początku zakresu.
- count
- UInt32
Dodatnia liczba kolejnych wartości do uwzględnienia.
- Atrybuty
Dotyczy
CombinatorialRangeAttribute(Int32, Int32, Int32)
Inicjuje nowe wystąpienie klasy CombinatorialRangeAttribute.
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)
Parametry
- from
- Int32
Wartość na początku zakresu.
- to
- Int32
Wartość inkluzywna na końcu zakresu.
- step
- Int32
Wartość niezerowa, o którą zmienia się każda wartość.
Dotyczy
CombinatorialRangeAttribute(UInt32, UInt32, UInt32)
Ważne
Ten interfejs API nie jest zgodny ze specyfikacją CLS.
Inicjuje nowe wystąpienie klasy CombinatorialRangeAttribute.
[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)
Parametry
- from
- UInt32
Wartość na początku zakresu.
- to
- UInt32
Wartość inkluzywna na końcu zakresu.
- step
- UInt32
Wartość dodatnia, o którą zmienia się każda wartość.
- Atrybuty