I need to find rowы in a DataTable by keys very fast. For that i convert data table to dictionary of type <Tuple<key1, key2, ..., keyN>, Datarow>
and can seek the record very fast like
var result = myDict[Tuple("aaa", 123, ...)];
Is the .Find() method faster? How does it work? I know i could just make a few samples and try them but if someone know how does this method works internally then it could help me in future. Thank you!