main
 1using System.Collections.Generic;
 2using System.Collections.ObjectModel;
 3
 4namespace presentation.windows.presenters
 5{
 6    static public class WpfBindingExtensinos
 7    {
 8        static public ObservableCollection<T> to_observable<T>(this IEnumerable<T> items)
 9        {
10            return new ObservableCollection<T>(items);
11        }
12    }
13}