Creates a filter to include elements whose type can be corresponds to the given class. It compares the native handle of the element classes.
const String = Il2Cpp.corlib.class("System.String");const objects = [ Il2Cpp.corlib.class("System.Object").new(), Il2Cpp.corlib.class("System.String").new()];const strings = objects.filter(Il2Cpp.isExactly(String)); Copy
const String = Il2Cpp.corlib.class("System.String");const objects = [ Il2Cpp.corlib.class("System.Object").new(), Il2Cpp.corlib.class("System.String").new()];const strings = objects.filter(Il2Cpp.isExactly(String));
Creates a filter to include elements whose type can be corresponds to the given class.
It compares the native handle of the element classes.