Search results for query: *

  • Users: DwithQs
  • Content: Threads
  • Order by date
  1. D

    Question Stack and Heap Memory - Objects, methods, and executable code

    When methods are called, do they go on the stack, or an entry pointing to the method go on the stack? Example Code: static void Main() { TestMethod(); } void TestMethod() { //do something } Stack: TestMethod() ---------> //do something executable code Main() -or- //do something...
Back
Top Bottom