5
votes
1answer
162 views
Why doesn’t this use of implicit casts work?
I've defined a generic class "Lazy<T>", for lazy evaluation and caching of the result of a delegate Func<T>.
I also define two implicit cast operators so I can create a Lazy<T> from …
