how to convert String array to StringBuilder array or vice
versa?
Answer Posted / krishana singh gniit
using System;
using System.Text;
class Program
{
static void Main()
{
//
// Create an array with five strings.
//
string[] array = new string[5];
array[0] = "Dot";
array[1] = "Net";
array[2] = "Perls";
array[3] = "Sam";
array[4] = "Allen";
//
// Call the methods.
//
string result1 = ConvertStringArrayToString(array);
string result2 = ConvertStringArrayToStringJoin
(array);
//
// Display the results.
//
Console.WriteLine(result1);
Console.WriteLine(result2);
Console.Read();
}
static string ConvertStringArrayToString(string[] array)
{
//
// Concatenate all the elements into a
StringBuilder.
//
StringBuilder builder = new StringBuilder();
foreach (string value in array)
{
builder.Append(value);
builder.Append('.');
}
return builder.ToString();
}
static string ConvertStringArrayToStringJoin(string[]
array)
{
//
// Use string Join to concatenate the string
elements.
//
string result = string.Join(".", array);
return result;
}
}
Is This Answer Correct ? | 3 Yes | 2 No |
Post New Answer View All Answers
Which .gang of four. Design pattern is shown below?
What is data dictionary in c#?
What are regular expressions? Search a string using regular expressions?
What is unmannaged code and will CLR handle this kind of code or not .
What are delegates in C#?
Is null empty or whitespace c#?
what is inheritance and an example in vb.net and c# of when you might use it?
State two different types of access modifiers.
What can be done with c#?
what is the difference between convert.tostring() and tostring() functions ?
Explain what is an interface in c#?
How many kinds of elements an array can have?
Is and as in c#?
Can you declare a class or a struct as constant?
Why do we use generics in c#?