- name
- the class name, which should look like "java/lang/String"
- loader
- the class loader that tries to load the class (in most cases the caller of the method
Documentation for this section has not yet been entered.
Loads a class. Returns the class on success, or a null reference on failure.
If you are not calling this from a class loader, this is most likely not going to do what you want. Use Java.Lang.Class.ForName(string) instead.
The method does not throw Java.Lang.ClassNotFoundException if the class isn't found because it isn't reasonable to throw exceptions wildly every time a class is not found in the first DEX file we look at.