2 overrides of WithTypeCore
Microsoft.CodeAnalysis.CSharp (2)
Syntax.xml.Syntax.Generated.cs (2)
13835
internal override BaseParameterSyntax
WithTypeCore
(TypeSyntax? type) => WithType(type);
13913
internal override BaseParameterSyntax
WithTypeCore
(TypeSyntax? type) => WithType(type ?? throw new ArgumentNullException(nameof(type)));
1 reference to WithTypeCore
Microsoft.CodeAnalysis.CSharp (1)
Syntax.xml.Syntax.Generated.cs (1)
13749
public BaseParameterSyntax WithType(TypeSyntax? type) =>
WithTypeCore
(type);