How did Microsoft create assemblies that have circular references?
Posted
by Drew Noakes
on Stack Overflow
See other posts from Stack Overflow
or by Drew Noakes
Published on 2009-08-22T17:26:06Z
Indexed on
2010/03/21
6:31 UTC
Read the original article
Hit count: 479
In the .NET BCL there are circular references between:
System.dll
andSystem.Xml.dll
System.dll
andSystem.Configuration.dll
System.Xml.dll
andSystem.Configuration.dll
Here's a screenshot from .NET Reflector that shows what I mean:
How Microsoft created these assemblies is a mystery to me. Is a special compilation process required to allow this? I imagine something interesting is going on here.
© Stack Overflow or respective owner