public static class Extensions
{ public static ObservableCollection<T> AsObservableCollection<T>(this System.Collections.Generic.IEnumerable<T> col)
{
var newcol = new ObservableCollection<T>();
foreach (var item in col)
{
newcol.Add(item);
} return newcol;
}
}