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
AutoDeconstruct only looks at definitions in the current compilation. However, we need to handle the accessibility correctly. For example, if the target type is internal, the corresponding static Deconstruct extension method should be internal.
It may get complicated if types with the same name (like a generic and non-generic Person) have different accessibility. This may make determining the accessibility of the containing static class difficult.
The text was updated successfully, but these errors were encountered:
AutoDeconstruct only looks at definitions in the current compilation. However, we need to handle the accessibility correctly. For example, if the target type is
internal
, the corresponding staticDeconstruct
extension method should beinternal
.It may get complicated if types with the same name (like a generic and non-generic
Person
) have different accessibility. This may make determining the accessibility of the containing static class difficult.The text was updated successfully, but these errors were encountered: