Example #1
0
 /// <summary>
 /// Loads the generic interfaces.
 /// </summary>
 protected void LoadGenericInterfaces()
 {
     foreach (RuntimeType type in typeSpecs)
     {
         CilGenericType genericType = type as CilGenericType;
         if (genericType != null)
         {
             genericType.ResolveInterfaces(this);
         }
     }
 }