// Summary:
 //     Adds an object to the end of the Process.
 //
 // Parameters:
 //   item:
 //     The object to be added to the end of the System.Collections.Generic.List<String> Processes.
 //     The value can be null for reference types.
 public void Add(Process item)
 {
     CollectionStrings.Add(item.ProcessName);
 }
 // Summary:
 //     Adds an object to the end of the System.Collections.Generic.List<String>.
 //
 // Parameters:
 //   item:
 //     The object to be added to the end of the System.Collections.Generic.List<String>.
 //     The value can be null for reference types.
 public void Add(String item)
 {
     CollectionStrings.Add(item);
 }