Exemplo n.º 1
0
 /// <summary>
 /// Adds another ExcludedNames collection to this collection.
 /// </summary>
 public void Add(ExcludedNames names)
 {
     foreach (string name in names)
     {
         Add(name);
     }
 }
Exemplo n.º 2
0
		/// <summary>
		/// Adds another ExcludedNames collection to this collection.
		/// </summary>
		public void Add(ExcludedNames names)
		{
			foreach (string name in names) {
				Add(name);
			}
		}
Exemplo n.º 3
0
		public void Init()
		{
			excludedNames = new ExcludedNames();
		}