Fan.Sys.Sys.initGenericParamTypes C# (CSharp) Method

initGenericParamTypes() private static method

private static initGenericParamTypes ( ) : bool
return bool
        private static bool initGenericParamTypes()
        {
            List noMixins = new List(TypeType, 0).ro();
              for (int i=0; i<m_genericParamTypes.Length; ++i)
              {
            ClassType gp = m_genericParamTypes[i];
            if (gp == null) continue;
            gp.m_base = ObjType;
            gp.m_mixins = noMixins;
              }
              return true;
        }