Given the following code sample, which of the following stri…
Given the following code sample, which of the following strings will be displayed in the message box?enum Flavor {Vanilla, Strawberry, Chocolate}Flavor iceCreamFlavor = Flavor.Strawberry;MessageBox.Show(iceCreamFlavor + ” is my favorite!”);
Read Details