Custom Assembly Attribute to String
问题 I have defined a custom assembly attribute and am trying to call it into a string much like my previous post Calling Custom Assembly Attributes. I am now trying to accomplish the very same thing in c#. I have defined my custom attribute: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Runtime.InteropServices; using System.Reflection; namespace authenticator.Properties { public class SemverAttribute : Attribute { private string _number; public