Yurttas/PL/OOL/CS/F/02/01/03.html

From ZCubes Wiki
Revision as of 07:19, 7 November 2013 by MassBot1 (talk | contribs) (Created page with "{| width="100%" cellpadding="4" | class="y01" | <span class="b10"> c# programming language fundamentals </span> | class="y01" | <div class="right"><span class="h06b"> <span...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
c# programming language fundamentals
2. c# language fundamentals

types -

  • stack - local variables and value types are allocated
    [ memory referred to by the name of the variable ]
  • stack objects are destroyed at the end of function call
  • heap - reference types
    [ when object is alloacated on the heap, its address is returned,
    and that address is assigned to a reference ]
  • heap objects collected sometime after the final reference to them is destroyed.

c#, .net framework, and visual studio.net << | >> classes, objects


Dr.Salih Yurttas