在C#中,可以使用注解(Attribute)來為實(shí)體類添加元數(shù)據(jù)信息。可以使用以下步驟來為實(shí)體類添加注解:
[AttributeUsage(AttributeTargets.Class)]
public class MyCustomAttribute : Attribute
{
public string Description { get; set; }
public MyCustomAttribute(string description)
{
Description = description;
}
}
[MyCustomAttribute("This is a custom attribute")]
public class MyClass
{
// class implementation
}
MyCustomAttribute attribute = (MyCustomAttribute)Attribute.GetCustomAttribute(typeof(MyClass), typeof(MyCustomAttribute));
if (attribute != null)
{
Console.WriteLine(attribute.Description);
}
通過以上步驟,可以為C#實(shí)體類添加注解并使用注解中的元數(shù)據(jù)信息。