Follow along with the video below to see how to install our site as a web app on your home screen.
Not: This feature may not be available in some browsers.
Kodlarınız çok karışık...Lütfen kod ekleye basıp ekleyin bir dahakine. if'in orada neden cümleyi bitirdiniz?WebClient client = new WebClient();
string core = client.DownloadString("http://xxxx/core.txt");
label1.Text = "core";
)
if (label1.Text = "a") ;
string message = "test";
string title = "test tit";
MessageBox.Show(message, title);
bu
if (label1.Text = "a") ;
if (label1.Text = "a")
{
string message = "test";
string title = "test tit";
MessageBox.Show(message, title);
}
Kodlarınız çok karışık...Lütfen kod ekleye basıp ekleyin bir dahakine. if'in orada neden cümleyi bitirdiniz?
Sıkıntı burada gerçekleşiyor.Kod:if (label1.Text = "a") ;
Böyle düzeltin.Kod:if (label1.Text = "a") { string message = "test"; string title = "test tit"; MessageBox.Show(message, title); }
arkadaşa anlattım zaten syntax yok şu an kodları kopyalarken eksik kopyaladım
if (label1.Text == "a")