Fri Mar 29 16:09:54 CET 2002 Paolo Molaro <lupus@ximian.com>
[mono.git] / mono / metadata / TODO
1
2 * mono_class_from_name
3
4         In many places we call mono_class_from_name with static values,
5         we should cache that instead:
6
7         static MonoClass *klass;
8
9         if (!klass){
10                 klass = mono_class_from_name (...);
11         }
12
13 * Uniform names
14
15         We have a mess of names in the icall.c file, we need to sort that out.