/// <summary>
 /// Returns the HoodieStyle constant associated with the
 /// specified HoodieSKU constant.
 /// </summary>
 public HoodieStyle this[HoodieSKU sku]
 {
     get
     {
         int value = (int)sku;
         return((HoodieStyle)value);
     }
 }
 /// <summary>
 /// Returns the localized string associated with the
 /// specified HoodieSKU.
 /// </summary>
 static public string GetDisplayString(HoodieSKU sku)
 {
     return(Assets.strings.ResourceManager.GetString(sku.ToString()));
 }