🚀 **C# Tricky Basic Question – Day 5** Let’s test your C# fundamentals 👇 ```csharp using System; class Program { static void Main() { string s = "abc"; string t = s + "Def".ToLower(); } Console.WriteLine(s == t); } ``` 🤔 **What will be the output?** A) True B) False C) Compile Error D) Runtime Error 💡 Looks simple… but there’s a small detail that many developers miss! Take a moment and think carefully before answering. 👇 **Comment your answer and explain why.** I’ll reveal the correct answer in the next post. #CSharp #DotNet #Programming #SoftwareDevelopment #CodingChallenge #Developers #TechLearning
C
B) False