Heap in C#
-
HI, EveryBody, I understand from Ur article that what is stack in C#,but i didn't understood what is heap in c#???So, i want more explanation about heap with simple example??? Thanks... IN Advance...
-
HI, EveryBody, I understand from Ur article that what is stack in C#,but i didn't understood what is heap in c#???So, i want more explanation about heap with simple example??? Thanks... IN Advance...
If this is in response to an article you should post it in the forum for that article, not here.
-
HI, EveryBody, I understand from Ur article that what is stack in C#,but i didn't understood what is heap in c#???So, i want more explanation about heap with simple example??? Thanks... IN Advance...
-
HI, EveryBody, I understand from Ur article that what is stack in C#,but i didn't understood what is heap in c#???So, i want more explanation about heap with simple example??? Thanks... IN Advance...
A heap is a memory storage and retrieval construct I learned about in college. It's a memory allocation and storage scheme not terribly unlike a stack. I honestly can't remember the exact details (from 1972...) but it's used extensively in compilers and other system level programming to manage limited memory efficiently. Google "memory heap", or consult Knuth's "The Art of Computer Programming" Volume 3 page 145. [Addison-Wesley, 1973]
Jim