If-Else Yapısı ve Ternary If
Örnek bir if else kullanımı aşağıdaki gibidir:
bool condition = true;
if (condition)
{
Console.WriteLine("Değişken: true");
}
else
{
Console.WriteLine("Değişken: false");
}
Join the project workspace to share your solution and receive feedback.
Swap insights and ask questions about “C# 101”.