System.Collections.Generic.List.Add(NUnit.Framework.Constraints.CollectionOrderedConstraint.OrderingStep)

Here are the examples of the csharp api class System.Collections.Generic.List.Add(NUnit.Framework.Constraints.CollectionOrderedConstraint.OrderingStep) taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

2 Examples 7

1. Example

Project: msgpack-cli
Source File: CollectionOrderedConstraint.cs
private void CreateNextStep(string propertyName)
        {
            _activeStep = new OrderingStep(propertyName);
            _steps.Add(_activeStep);
        }

2. Example

Project: nunit
Source File: CollectionOrderedConstraint.cs
private void CreateNextStep(string propertyName)
        {
            _activeStep = new OrderingStep(propertyName);
            _steps.Add(_activeStep);
        }