Fast find object by string property
- by Andrew Kalashnikov
Hello, colleagues.
I've got task to fast find object by its string property.
Object:
class DicDomain
{
public virtual string Id{ get; set; }
public virtual string Name { get; set; }
}
For storing my object I use List[T] dictionary where T is DicDomain for now .
I've got 5-10 such lists, which contain about 500-20000 at each one.…