The main source:https://stackoverflow.com/questions/2471588/how-to-get-index-using-linq#answer-2471611
Tips & Thoughts
April 20, 2020
The main source:https://stackoverflow.com/questions/2471588/how-to-get-index-using-linq#answer-2471611
April 20, 2020
Value types have exact amount of memory space they take up.On the other hand Reference types have dependency of amount of data they store, based on that they extend memory space by using pointers. It’s always 32 bits of memory for int data type, regardless of data: boolean, character, float, double, int, long, decimal are value types But why we don’t allocate memory consecutively for reference types and why we…