[MethodImpl(MethodImplOptions.AggressiveInlining)] is for the JIT-compiler and the calls to the Finalizers are not initiated from JIT-compiled code (unmanaged part of the runtime). So, logically it shouldn't have any effect.
But even if was the case, I'd assume that the code that runs them is something like:
foreach(var finalizer in finalizers){
finalizer(); // inline here?
}
how would you inline that?