2010-08-24 88 views

回答

154

由於每MSDN

var myObservableCollection = new ObservableCollection<YourType>(myIEnumerable); 

這將使目前的IEnumerable的淺拷貝,並把它在一個的ObservableCollection。

+0

這是比使用foreach循環更快將這些項目逐一插入集合中? – Rexxo 2016-08-31 12:49:16

+2

@Rexxo用構造函數做它會稍微快一點。在內部[它使用'foreach'](http://referencesource.microsoft.com/System/compmod/system/collections/objectmodel/observablecollection.cs.html#cfaa9abd8b214ecb)將項目複製到內部集合,但是如果你做foreach並調用'Add' [它將通過'InsertItem'](http://referencesource.microsoft.com/System/compmod/system/collections/objectmodel/observablecollection.cs.html#767bf62bf4a3a7c1)很多額外的東西,當初步填充時會使它稍微慢一些。 – 2016-08-31 13:05:23

57
  1. 如果您正在使用非通用IEnumerable工作,就可以這樣來做:

    public ObservableCollection<object> Convert(IEnumerable original) 
    { 
        return new ObservableCollection<object>(original.Cast<object>()); 
    } 
    
  2. 如果你使用通用的IEnumerable<T>工作,你可以這樣來做:

    public ObservableCollection<T> Convert<T>(IEnumerable<T> original) 
    { 
        return new ObservableCollection<T>(original); 
    } 
    
  3. 如果您使用的是非泛型IEnumerable但知道元素的類型,可以這樣做:

    public ObservableCollection<T> Convert<T>(IEnumerable original) 
    { 
        return new ObservableCollection<T>(original.Cast<T>()); 
    } 
    
24

爲了讓事情變得更加簡單,你可以從它創建一個Extension方法。

public static class Extensions 
{ 
    public static ObservableCollection<T> ToObservableCollection<T>(this IEnumerable<T> col) 
    { 
     return new ObservableCollection<T>(col); 
    } 
} 

然後就可以調用每個IEnumerable的

var lst = new List<object>().ToObservableCollection(); 
3
ObservableCollection<decimal> distinctPkgIdList = new ObservableCollection<decimal>(); 
guPackgIds.Distinct().ToList().ForEach(i => distinctPkgIdList.Add(i)); 

// distinctPkgIdList - ObservableCollection 
// guPackgIds.Distinct() - IEnumerable 
1

的C#功能的方法來轉換了IEnumerable到的ObservableCollection

private ObservableCollection<dynamic> IEnumeratorToObservableCollection(IEnumerable source) 
    { 

     ObservableCollection<dynamic> SourceCollection = new ObservableCollection<dynamic>(); 

     IEnumerator enumItem = source.GetEnumerator(); 
     var gType = source.GetType(); 
     string collectionFullName = gType.FullName; 
     Type[] genericTypes = gType.GetGenericArguments(); 
     string className = genericTypes[0].Name; 
     string classFullName = genericTypes[0].FullName; 
     string assName = (classFullName.Split('.'))[0]; 

     // Get the type contained in the name string 
     Type type = Type.GetType(classFullName, true); 

     // create an instance of that type 
     object instance = Activator.CreateInstance(type); 
     List<PropertyInfo> oProperty = instance.GetType().GetProperties().ToList(); 
     while (enumItem.MoveNext()) 
     { 

      Object instanceInner = Activator.CreateInstance(type); 
      var x = enumItem.Current; 

      foreach (var item in oProperty) 
      { 
       if (x.GetType().GetProperty(item.Name) != null) 
       { 
        var propertyValue = x.GetType().GetProperty(item.Name).GetValue(x, null); 
        if (propertyValue != null) 
        { 
         PropertyInfo prop = type.GetProperty(item.Name); 
         prop.SetValue(instanceInner, propertyValue, null); 
        } 
       } 
      } 

      SourceCollection.Add(instanceInner); 
     } 

     return SourceCollection; 
    } 
相關問題