You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Type.GetType is one the several APIs that take the caller assembly as implicit hidden argument.
Another example of such API is Assembly.Load. Assembly.Load loads assemblies in the caller context, using this hidden caller argument.
Type.GetType loads assemblies in the default context today. We should change it to load assemblies in the caller context to be consistent with Assembly.Load.