Exemplo n.º 1
0
 /// <summary>
 ///     Initializes a new instance of the <see cref="IfBranchCaller" /> class.
 /// </summary>
 /// <param name="ifIndexerStep">The if step whose 'default' set of steps will constitute 'else' branch.</param>
 public IfBranchCaller(IfIndexerStepBase <TKey, TValue> ifIndexerStep)
 {
     ElseBranch = new ElseBranchRejoiner(ifIndexerStep);
 }
Exemplo n.º 2
0
 public ElseBranchRejoiner(IfIndexerStepBase <TKey, TValue> ifIndexerStep)
 {
     _ifIndexerStep = ifIndexerStep;
 }