Implemented interface member:
property
Name
Microsoft.TemplateEngine.Abstractions.ITemplateParameter.Name
1 write to Name
Microsoft.TemplateEngine.Utils (1)
TemplateParameter.cs (1)
27
Name
= name;
5 references to Name
Microsoft.TemplateEngine.Utils (5)
TemplateParameter.cs (5)
84
return $"{
Name
} ({Type})";
102
public override int GetHashCode() =>
Name
!= null ?
Name
.GetHashCode() : 0;
104
public bool Equals(ITemplateParameter other) => !string.IsNullOrEmpty(
Name
) && !string.IsNullOrEmpty(other.Name) &&
Name
== other.Name;