[Proposal]: Unbound generic types in `nameof`
jnm2 opened this issue ยท 6 comments
Open generic types in nameof
- Proposed
- Prototype:
- dotnet/roslyn#4902 and dotnet/roslyn#4907 by @CyrusNajmabadi
- dotnet/roslyn#20450 by @alrz - Implementation: dotnet/roslyn#75368
- Specification: Not Started
Summary
Allows open generic types to be used with nameof
, as in nameof(List<>)
to obtain the string "List"
, rather than having to specify an unused generic type argument in order to obtain the same string.
Motivation
This is a small feature that removes a common frustration: why do I have to pick a generic type argument when the choice has no effect on the evaluation of the expression? It's very odd to require something to be specified within an operand when it has no impact on the result. Notably, typeof
does not suffer from this limitation.
It's not just about code that better expresses itself. Once some arbitrary type argument has been chosen in a nameof
expression, such as object?
, changing a constraint on a type parameter can break uses of nameof
unnecessarily. Insult becomes added to injury in this scenario. Satisfying the type parameter can sometimes require declaring a dummy class to implement an interface which is constraining the type parameter. Now there's unused metadata and a strange name invented, all for the purpose of adding a type argument to the nameof
expression, a type argument which nameof
will ultimately ignore even though it requires it.
In some rarer cases, with a generic class constraint, it's not even possible to use nameof
because it's not possible to inherit from a base class which is used as a generic constraint, due to the base class having an internal constructor or internal abstract member.
There's a lot of bang for the buck in fixing this one. When you hit this, it feels like a paper cut. It's gotten steady attention from the community, including an initial proposal by Jon Skeet. Implementation complexity is very low. A language design member and a community member have each implemented this feature in the compiler for purposes of investigation.
Description
Unbound type names become available for use with nameof
:
nameof(A<>)
evaluates to"A"
nameof(Dictionary<,>)
evaluates to"Dictionary"
Additionally, chains of members will be able to be accessed on unbound types, just like on bound types:
class A<T>
{
public List<T> B { get; }
}
nameof(A<>.B)
evaluates to"B"
nameof(A<>.B.Count)
evaluates to"Count"
Even members of generic type parameters can be accessed, consistent with how nameof
already works when the type is not unbound. Since the type is unbound, there is no type information on these members beyond what System.Object
or any additional generic constraints provide.
class A<TItem, TCollection> where TCollection : IReadOnlyCollection<TItem>
{
public TCollection B { get; }
}
nameof(A<,>.B)
evaluates to"B"
nameof(A<,>.B.Count)
evaluates to"Count"
.
Not supported
-
Support is not included for nesting an unbound type as a type argument to another generic type, such as
A<B<>>
orA<B<>>.C.D
. Even though this could be logically implemented, such expressions have no precedent in the language, and there is not sufficient motivation to introduce it:-
A<B<>>
provides no benefits overA<>
, andA<B<>>.C
provides no benefits overA<>.C
. -
If
C
returns theT
ofA<T>
,A<B<>>.C.D
can be written more directly asB<>.D
. If it returns some other type, thenA<B<>>.C.D
provides no benefits overA<>.C.D
.
-
-
Support is not included for partially unbound types, such as
Dictionary<int,>
. Similarly, such expressions have no precedent in the language, and there is not sufficient motivation. That form provides no benefits overDictionary<,>
, and accessing members ofT
-returning members can be written more directly without wrapping in a partially unbound type.
Detailed design
Member lookup on an unbound type expression will be performed the same way as for a this
expression within that type declaration.
No change is needed for the cases listed in the Not supported section. They already provide the same errors for nameof
expressions as they do for typeof
.
No change is needed when the syntax nameof
binds to a method named 'nameof' rather than being the contextual keyword nameof
. Passing any type expression to a method results in "CS0119: '...' is a type, which is not valid in the given context." This already covers unbound generic type expressions.
Spec updates
Work in progress.
Open questions
None.
Design meetings
https://github.com/dotnet/csharplang/blob/main/meetings/2017/LDM-2017-11-06.md#roslyn-20450
Finally! As of today I use a dummy internal type named _
so I can have expressions like
nameof(A<_>)
nameof(Dictionary<_,_>.Count)