> Is it possible to create "Caches" on the fly with the mcab? I've
> looked through the source and can't figure out how to do it, and
> remain compatible with future releases. (ie make public some methods
> and classes to allow dynamic creation ) .
This guy shows you how to do at least some of wha
Hi all,
Since the demise of GotDotNet , i've not been able to find any useful
comments on the Microsoft Caching Application Block [MCAB]. (MSDN is
next to useless )
In the project that I am working on, we need to have all the
configuration for the clients available in a central database, as the
Thank you very much. That worked great! Exactly what I was looking for.
-Mike
On 3/7/07, Fernando Tubio <[EMAIL PROTECTED]> wrote:
Yes, it is possible. For example,
YourType obj = new YourType();
XmlSerializer serializer = new XmlSerializer( typeof( YourType ) );
XmlSerializer