Closed zspitz closed 3 years ago
Language | Representation |
---|---|
None | Member (String) |
C# |
Member<string> |
Visual Basic |
Member(Of String) |
These are node types, not CLR types, so there's no danger of thinking them generic.
A better choice might be to remove the space between Member
and (string)
.
We're not going to do this; it obscures the meaning of the NodeType value.
For example, a MemberExpression node whose Type is
string
, should appear like this:MemberExpression<string>
(orMemberExpression(Of String)
for VB).