CJCoding With Joseph
← Back to Question List

Select topics to narrow your question pool, then enable Random to jump to a random question matching your filters.

Topics:
C# Quiz #41

Comparing Strings with ==

mediumStrings

What does this code print?

📄 Code

1string a = "hi";
2string b = "hi";
3Console.WriteLine(a == b);