自定义Attribue:ImgAttribute
[AttributeUsage(AttributeTargets.All, Inherited = false, AllowMultiple = true)]
sealed class ImgAttribute : Attribute
{
readonly string imgUrl;
public ImgAttribute(string imgUrl)
{
this.imgUrl = imgUrl;
}
/// <summary>
/// 图片地址
/// </summary>
public string ImgUrl
{
get { return imgUrl; }
}
}
[AttributeUsage(