public static T AttributeValue <T>(this License license, string attributeName) where T : struct
 {
     return(license.AttributeValue(attributeName).To <T>());
 }
 public static T FeatureValue <T>(this License license, string featureName) where T : struct
 {
     return(license.FeatureValue(featureName).To <T>());
 }