if karar yapısındaki cevap adlı değişkende neden hata olduğunu bulamıyorum yardımcı olur musunuz?
18.09.2022 - 10:51
kodumdaki hatayı bulmama yardım eder misiniz :)
83
Görüntülenme
0 Beğeni
https://learn.microsoft.com/en-us/dotnet/csharp/programming-guide/strings/
-----
You don't use the new operator to create a string object except when initializing the string with an array of chars.
Initialize a string with the Empty constant value to create a new String object whose string is of zero length. The string literal representation of a zero-length string is "". By initializing strings with the Empty value instead of null, you can reduce the chances of a NullReferenceException occurring. Use the static IsNullOrEmpty(String) method to verify the value of a string before you try to access it.
-----
Burada da açıklandığı gibi string bir ifadeyi oluştururken boş olduğunu göstermeniz gerekiyor. Yukarıda Ya "string cevap = null " ya da "string cevap = "" " yapmanız gerekir.
.
string cevap olarak tanımladığınız değişkende " " şu şekilde bir atama yapabilirsiniz.
.
12. satırı
string cevap = "";
olarak değiştir.
teşekkür ederimm
tesekkürlerr