I have asked this before but I didn't get the question right so the answer was missed.
If I have a method that returns an ObservableColletion<T>
how would I then use this in another generic method.
Would
method2<ObservableCollection<T>>(){}
be the way to go.
I am trying to make a generic resultEventArgs that will pass the results of an Ado.NET Dataservices query to all subscribers. Inside that I want ot be able to pass the strongly typed EntityCollection that is returned [Ado.NET 1.5 generated]
So yes, my question is worded ObservableCollection
because i didn't want to get the whole ado.net dataservices confusion.
Cheers Dave