What are strin concatation methods in c#?
Answer / kishoreg
Generally in c# strings were concatinated with symbol '+'
1)'+'
string myName;
myName='GVK' + 'kishore';
2)Append
If it is StringBuilder then we can join as below
StringBuilderObject.Append('GVK');
StringBuilderObject.Append('kishore');
3)Join
Join takes a String array and a separator string and
produces a single string with one separator between each
element in the array.Split does the opposite, splitting a
string made up of several elements separated by a
separator.
Ex. string commatext = "alpha,bravo,charlie";
string[] words = commatext.Split(',');
string dashed = string.Join("---", words);
MessageBox.Show(dashed);
Hope helpfull...KishoreG
Is This Answer Correct ? | 5 Yes | 1 No |
what is used ref keyword in c#,and how we used it?
How can I get around scope problems in a try/catch?
What is the difference between string and string in c#?
What is different about switch statements in c#?
i want o/p 011242110 in c# code.
Explain about WSDL
What are static and dynamic variables?
Why c# is called type safe language?
What is the difference while using directive vs using statement ?
Where is the keyword void used?
What is the difference between package and interface?
What is int16?