I am working on some heavy cpu bound problem. I see a big performance improvement when I use the inline keyword.
I create a dictionary from the standard .net librar
Without inline, you are using generic comparison which is very inefficient. With inline, the genericity is removed and int comparison is used directly.