I have an enum representing all material assembly codes in the system:
public enum EAssemblyUnit { [Description(\"UCAL1\")] eUCAL1, [Description(
public EAssemblyUnit FromDescription(string AU) { EAssemblyUnit eAU = Enum.Parse(typeof(EAssemblyUnit), AU, true); return eAU; }