Ejemplo n.º 1
0
 /// <summary>
 /// Adds the specified assembly reference to the collection.
 /// </summary>
 /// <param name="assembly">The specified assembly reference to add.</param>
 /// <returns>The added assembly reference instance.</returns>
 public AssemblyReference Add(AssemblyReference assembly)
 {
     _list.Add(assembly);
     return(assembly);
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Removes the specified assembly reference from the collection.
 /// </summary>
 /// <param name="assemblyReference">The specified assembly reference to remove.</param>
 public void Remove(AssemblyReference assemblyReference)
 {
     _list.Remove(assemblyReference);
 }