Welcome to mirror list, hosted at ThFree Co, Russian Federation.

TODO « metadata « mono - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 98c3ce7b7d35c7e3e76f3cc08e342da5c1a2a449 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15

* mono_class_from_name

	In many places we call mono_class_from_name with static values,
	we should cache that instead:

	static MonoClass *klass;

	if (!klass){
		klass = mono_class_from_name (...);
	}

* Uniform names

	We have a mess of names in the icall.c file, we need to sort that out.