with WPF in c # I'm new and I want an observable list with ObservableCollection

0
 Private _ListaCategoria As New ObservableCollection(Of Categoria)

This is Visual Basic. How would the statement in C # be an observable collection or a list?

    
asked by Sebaztian Lornzo 28.05.2017 в 18:20
source

1 answer

0
private ObservableCollection<Categoria> _ListaCategoria = new ObservableCollection<Categoria>();
    
answered by 28.05.2017 в 22:02