Friday 20 September 2013

Best C# Programs information

Que:- In how many ways you can create new copies of an existing string in C#?

Ans:- There are two ways:
1) string s2=s1;
2) string s2=string.copy(s1);

No comments:

Post a Comment