c# memory usage

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Narz1986
    New Member
    • Dec 2008
    • 10

    c# memory usage

    Hi,
    i have been searching weather there is a way of using the hard disk as memory instead of ram memory for my c# windows application....

    Anyone has any info on this please spare ur time...
    thank you,
    Reagrds
    Narz1986
  • PRR
    Recognized Expert Contributor
    • Dec 2007
    • 750

    #2
    Put into simple words: CLR and OS takes care of memory management. You can using Caching and other optimizations at higher level... You can't have control over memory allocation ... Remember CLR is the execution engine must like Java virtual engine... Everything happens within the context of it ( as long as its managed code)..
    As far as your question about "there is a way of using the hard disk" is oncerned.. its done automatically. Look into automatic memory management, Pageing, Swapping, Virtual Addressing etc... you will get the picture...

    Comment

    • Narz1986
      New Member
      • Dec 2008
      • 10

      #3
      thanks DeepBlue,
      i wil look into it....



      regards,
      narz1986

      Comment

      Working...