Arkadaşlar selam,
c# ta hazırlamaya çalıştığım dönem ödevim için bir yerde sorun yaşıyorum.
private void Form1_Load(object sender, EventArgs e)
{
string[] Donem_1 = { "Matematik", "Fizik", "İngilizce", "Programlama" };
string[] Donem_2 = { "Türk Dili", "Kimya", "Veri Tabanı", "İnternet Programcılığı" };
string[] Kod_1 = { "MAT101", "FIZ101", "DIL101", "PRG101" };
string[] Kod_2 = { "TUR102", "KIM102", "VTB102", "INP102" };
byte[] AKTS_1 = { 3, 3, 2, 4 };
byte[] AKTS_2 = { 2, 2, 4, 5 };
textBox7.Text = Donem_1[0];
textBox8.Text = Donem_1[1];
textBox9.Text = Donem_1[2];
textBox10.Text = Donem_1[3];
textBox11.Text = Kod_1[0];
textBox12.Text = Kod_1[1];
textBox13.Text = Kod_1[2];
textBox14.Text = Kod_1[3];
textBox3.Text = AKTS_1[0];
textBox4.Text = AKTS_1[1];
textBox5.Text = AKTS_1[2];
textBox6.Text = AKTS_1[0];
} textBox3.Text = AKTS_1[0];
textBox4.Text = AKTS_1[1];
textBox5.Text = AKTS_1[2];
textBox6.Text = AKTS_1[0];
yazdığım kısımda editör "Cannot implicitly convert type byte to string" diye hata veriyor.
Byte tipinde aktarılan veriyi sanıtım dönüştürmem lazım. Nasıl yapmalıyım?
Teşekkürler.