У меня есть код с тройным циклом for:
try
{
string b = Convert.ToString(day) + "." + Convert.ToString(month) + "." + Convert.ToString(year) + "." + "\n" + "№ " + namb + "((Ф))" + "\n" + comboBox2.Text + " - " + comboBox1.Text + "\n" + "_______________________________________" + "\n\n";
Bitmap im = new Bitmap(pictureBox1.Image);
string a = "";
for (int h = 0; h < im.Height; h++)
{
for (int g = 0; g < im.Width; g++)
{
Color color = im.GetPixel(h, g);
byte GetPixelR = color.R;
byte GetPixelG = color.G;
byte GetPixelB = color.B;
int R = Convert.ToInt32(GetPixelR);
int G = Convert.ToInt32(GetPixelG);
int B = Convert.ToInt32(GetPixelB);
string[] strColor = new string []{ R.ToString() + "!"+ G.ToString()+ "$"+ B.ToString()+ "="+ "@" };
for (int n = 0; n < strColor.Length; n++)
{
a += strColor[n];
//a = a.Replace('0', ';').Replace('1', ',').Replace('2', '(').Replace('3', '.').Replace('4', '?').Replace('5', '-').Replace('6', '+').Replace('7', '^').Replace('8', ':').Replace('9', ']');
}
richTextBox2.Text = b + a;
}
}
}
catch
{
}
Но, как всегда есть большое НО.
Значение "а" в richTextBox не выводится.
Помогите пожалуйста новичку.
Спасибо.