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


Please Help Members By Posting Answers For Below Questions

Which .gang of four. Design pattern is shown below?

652


What is data dictionary in c#?

655


What are regular expressions? Search a string using regular expressions?

685


What is unmannaged code and will CLR handle this kind of code or not .

770


What are delegates in C#?

743


Is null empty or whitespace c#?

699


what is inheritance and an example in vb.net and c# of when you might use it?

709


State two different types of access modifiers.

741


What can be done with c#?

601


what is the difference between convert.tostring() and tostring() functions ?

786


Explain what is an interface in c#?

685


How many kinds of elements an array can have?

646


Is and as in c#?

652


Can you declare a class or a struct as constant?

731


Why do we use generics in c#?

723