Does anyone know if the new lazy initialization class (Lazy<T>) is or will be supported in the compact framework? I’ve looked on MSDN, but the support stuff listed on the bottom is kind of cryptic when it comes to support for the compact framework vs. the full-blown .Net framework.
Does anyone know if the new lazy initialization class ( Lazy<T> ) is or
Share
Not as of yet. As far as I Know, the latest release of the compact framework CLR is 2.0. The
Lazy<T>type wasn’t introduced until 4.0 of the full CLR and hence the earliest version it could appear in the compact framework is also 4.0.