Exemple #1
0
 /// <summary>
 /// Removes the given Trial from the Block.
 /// </summary>
 /// <param name="t">
 /// The Trial to remove.
 /// </param>
 /// <returns>
 /// True or False depending on if the Trial was removed.
 /// </returns>
 public bool RemoveTrial(Trial t)
 {
     return(Trials.Remove(t));
 }