Brunet.Services.MapReduce.MapReduceListConcat.AddEnum C# (CSharp) Method

AddEnum() protected static method

protected static AddEnum ( IList into, IEnumerable source ) : void
into IList
source IEnumerable
return void
    protected static void AddEnum(IList into, IEnumerable source) {
      if( source == null ) { return; }
      foreach(object o in source) {
        into.Add(o);
      }
    } 
  }