예제 #1
0
 /*----------------------------------------------------------------------------------------*/
 /// <summary>
 /// Adds transient values for the arguments defined in the dictionary.
 /// </summary>
 /// <param name="arguments">A dictionary of argument names and values to define.</param>
 public ParameterCollectionBuilder ConstructorArguments(IDictionary arguments)
 {
     _collection.AddRange(ParameterHelper.CreateFromDictionary(arguments, (name, value) => new ConstructorArgumentParameter(name, value)));
     return(this);
 }