Which String Operation Does The Belowmentioned Method Definep #882
Which string operation does the below-mentioned method define?</p> <pre><code class="language-csharp" line="1"> public static string Concat(string str0, string str1) </code></pre>
This multiple choice question (MCQ) is related to the book/course gs gs108 CSharp. It can also be found in gs gs108 Miscellaneous Topics - Introduction of String Formatting - Quiz No.1.
Which string operation does the below-mentioned method define?
public static string Concat(string str0, string str1)
method returns a string
string str1 is concatenated to the end of str0
can be used to concatenate any number of strings
all of the mentioned