예제 #1
0
 public MainWindow()
 {
     InitializeComponent();
     SourceList.ItemsSource = _source.AsBindableList();
     ResultList.ItemsSource = _source
                              .SelectConstant(x => x.Value * 2)
                              .WhereImmutable(x => x > 5)
                              .AsBindableList();
 }