c# Programming Glossary: objt
How to get distinct instance from a list by Lambda or LINQ http://stackoverflow.com/questions/1183403/how-to-get-distinct-instance-from-a-list-by-lambda-or-linq this class MyClass T public string value1 get set public T objT get set and a list of this class. I would like to use .net 3.5.. test with the following input var list new new value1 ABC objT 0 new value1 ABC objT 1 new value1 123 objT 2 new value1 123.. input var list new new value1 ABC objT 0 new value1 ABC objT 1 new value1 123 objT 2 new value1 123 objT 3 new value1 FOO..
|