How many String objects will be created when using a plus sign in the below code?
String result = \"1\" + \"2\" + \"3\" + \"4\";
If it was
Just one. The C# compiler will fold string constants and hence it essentially compiles down to
String result = "1234";