Calyptus.MVC.Internal.RoutingEngine.GetAssemblies C# (CSharp) Method

GetAssemblies() private static method

private static GetAssemblies ( ) : IEnumerable
return IEnumerable
		private static IEnumerable<Assembly> GetAssemblies()
		{
			foreach (Assembly a in System.Web.Compilation.BuildManager.GetReferencedAssemblies())
				yield return a;
		}