/// <summary>
        /// Creates the specified sequence.
        /// </summary>
        public ControlFlowBase Create(SequenceControlFlowElement sequence)
        {
            Assume.NotNull(sequence, nameof(sequence));
            var children = createChildren(sequence);

            return(new SequenceControlFlow(children));
        }
Exemplo n.º 2
0
 /// <summary>
 /// Indicates whether the current object is equal to another object of the same type.
 /// </summary>
 /// <param name="other">An object to compare with this object.</param>
 /// <returns>
 /// true if the current object is equal to the <paramref name="other" /> parameter; otherwise, false.
 /// </returns>
 public Boolean Equals(SequenceControlFlowElement other)
 {
     return(Equals(other as ControlFlowElementBase) &&
            Children.SequenceEqual(other.Children));
 }