Hello,
I am traing to make a search function which finds in UWP DataGrid or in attached ObservableCollection, any string. Search should be made by specified property.
This work I must to do using general programming .
I started with such code but I stuck.
public class MyObservableCollection<T> : ObservableCollection<T>
{
public int Find(string propertyName, string textToFind)
{
int index;
//body here
return index;
}
}
please help.