Esempio n. 1
0
 static void GenerateBind(List<Type> list, string name, int order,string path)
 {
     CodeGenerator cg = new CodeGenerator();
     cg.path = path;
     cg.GenerateBind(list, name, order);
 }
Esempio n. 2
0
 void tryMake(Type t)
 {
     if (t.BaseType == typeof(System.MulticastDelegate))
     {
         CodeGenerator cg = new CodeGenerator();
         cg.path = this.path;
         cg.Generate(t);
     }
 }
Esempio n. 3
0
        static bool Generate(Type t, string ns, string path)
        {
            if (t.IsInterface)
                return false;

            CodeGenerator cg = new CodeGenerator();
            cg.givenNamespace = ns;
            cg.path = path;
            return cg.Generate(t);
        }