export const isCollection = (object: Il2Cpp.Object): boolean => {
    const systemCollectionInterface = Il2Cpp.corlib.class("System.Collections.ICollection");
    return object.class.isSubclassOf(systemCollectionInterface, true);
};