C# observable collection

132 Views Asked by At

Does anyone know can i retrieve the first element of an observation collection?

I have already added elements to my collection:

 _fetchingWords.Add(new Words { English = "abc", French = "dcb", Spanish = "mez"});

I need to retrieve the first element ,ie , abc .

2

There are 2 best solutions below

0
On BEST ANSWER

You can use linq,

var firstElement = _fetchingWords.First();
0
On

ObservableCollection has an index
It is as simple as
I take it English is a property

_fetchingWords[_fetchingWords.Count - 1].English;