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
.NET Native analyzer had a type name parser extracted out of the runtime reflection stack so that we don't end up in a situation where static analysis is not capable to parse a string that runtime can parse.
E.g. we probably fail hard for generic instances (Type.GetType("Foo[Bar]")) should make sure both Foo and Bar are kept).
The text was updated successfully, but these errors were encountered:
.NET Native analyzer had a type name parser extracted out of the runtime reflection stack so that we don't end up in a situation where static analysis is not capable to parse a string that runtime can parse.
E.g. we probably fail hard for generic instances (
Type.GetType("Foo[Bar]")
) should make sure bothFoo
andBar
are kept).The text was updated successfully, but these errors were encountered: