public DescriptorSpecificationAttribute(DescriptorTargets target, string reference)
     : this(target, reference, CDK.Version, "The Chemistry Development Kit")
 {
 }
 public DescriptorSpecificationAttribute(DescriptorTargets target, string reference, string identifier, string vendor)
 {
     this.Reference  = reference;
     this.Identifier = identifier;
     this.Vendor     = vendor;
 }
 public DescriptorSpecificationAttribute(DescriptorTargets target)
     : this(target, null)
 {
 }