コード例 #1
0
        public string Value(AttributeType type)
        {
            if (Has(type))
            {
                return(this[type.ToKey()]);
            }

            return(string.Empty);
        }
コード例 #2
0
 public bool Has(AttributeType type)
 {
     return(this.Any(a => a.Key == type.ToKey()));
 }