❔ It it possible to get name of attribute without reflection?
I have following:
is it possible to get the name of CustomAttribute? with
is it possible to get the name of CustomAttribute? with
type.GetCustomAttribute?type.GetCustomAttributepublic class Book
{
[CustomAttribute]
public string Name
{
get; private set;
}
}