Skip to content

Instantly share code, notes, and snippets.

View yilmazdincsoy's full-sized avatar

Yılmaz Dincsoy yilmazdincsoy

  • Independent
  • Turkey
View GitHub Profile
public static ObservableCollection<T> ToObservableCollection<T>(this IEnumerable<T> list){
var collection= new ObservableCollection();
foreach(vat item in list)
{
collection.Add(item);
}
//
return collection;
}