In a switch statement is it possible to use a string variable or can you only use integers (c#) | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

In a switch statement is it possible to use a string variable or can you only use integers (c#)

2nd Jun 2017, 8:00 PM
James Murphy
James Murphy - avatar
1 Answer
+ 6
Yes. You can use strings. string a = "a"; switch (a) { case "a": a = "bdhdiw"; break; } Console.Write(a); Output: bdhdiw
2nd Jun 2017, 8:23 PM
Rrestoring faith
Rrestoring faith - avatar