private void FillList(List <Image> board, string image, string oddImage, decimal limit) { for (decimal i = limit; i > 0; i -= UC) { if (i < UC) { board.Add(GetImage(oddImage, i.ToString("0.###"))); } else { board.Add(GetImage(image, UC.ToString("0.###"))); } } }