Home » C# Programming » Strings

Which of the following statements will correctly copy the contents of one string into another?

Correct Answer: String s1 = "String"; String s2; s2 = String.Copy(s1);

← Previous Question Next Question→

More Questions from Strings

Discussion & Comments

No comments yet. Be the first to comment!
Join Discussion