Primitive Data Types and Variables/Strings and Objects
Declare two string variables and assign them with “Hello” and “World”. Declare an object variable and assign it with the concatenation of the first two variables (mind adding an interval between). Declare a third string variable and initialize it with the value of the object variable (you should perform type casting).
Здравейте, не ми е ясно точно след като декларирам двата стринга какво точно трябва да направя.
Много ще съм благодарен ако някой ме светне :D
string one = "Hello";
string two = "World";
object both = one + " " + two;
string final = (string)both;
Console.WriteLine(final);
Този начин добър ли е?
Да , идеален.