cache

  • Thread starter Thread starter Aaron
  • Start date Start date
A

Aaron

I made a web application using c#, i'm trying to port it to a windows
application. but some of the functions didn't work.

What is the equavelent of cache in a windows application? and how do i
use it?

Thanks

a
 
kuya789 said:
I made a web application using c#, i'm trying to port it to a windows
application. but some of the functions didn't work.

What is the equavelent of cache in a windows application? and how do i
use it?

Thanks

a
The cache is an optimization thing, to stop frequent accesses to the
same data being built from scratch each time. Depending on what it's
caching you may not need this in a windows app.
 
Back
Top