Is it possible to force the C# compiler to pull all the referenced calls out of the framework and pack them into dlls or even a single executable?
I like writing qu
Some C# features are bound to interfaces of the .NET framework.
For example:
yield return requires the IEnumerable interface
yield return
using (x) {} requires the IDisposable interface
using (x) {}