Okay, this could be rather in depth but I'll try to ask a clear question: how can I find the first value in a Dictionary<int, MyTableClass>
where MyTableClass inherits Field<F1, F2, F3>
? I'd prefer a Property or Property/Method combination that returns the first value in the Dictionary where F1 = MyEnum.value
.
What I don't want to do is a foreach
. Performance-wise, this is really not a preferred method. Any help would be gratefully appreciated.
Regards, David