protected internal string TankImageLarge(int countryID, int tankID, string tankDescription) { string tankName = string.Format("{0}_{1}_Large.png", countryID, tankID); #if DEBUG return(string.Empty); #else return(String.Format(@"<Image src='{0}' alt='{2}'/>", WOTHelper.GetImagePath(tankName), tankName, tankDescription)); #endif }
protected internal string TankImageToolTip(int countryID, int tankID, string tankDescription) { string tankName = string.Format("{0}_{1}.png", countryID, tankID); return(String.Format(@"<Image src='{0}'/>", WOTHelper.GetImagePath(tankName), tankName, tankDescription)); }