how to convert String array to StringBuilder array or vice
versa?

Answer Posted / urukundappa.g

using System;
using System.Text;

class Program
{
static void Main()
{
// Create an array with five strings.
string[] array =
new string["Dot", "Net", "Perls", "Sam", "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();
}

StringBuilder [] stringBuilders = builder.ToArray();

Is This Answer Correct ?    0 Yes 4 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is null propagation c#?

674


Is c# an open source?

665


Explain the types of assemblies in .net?

697


What is a Command Object in C#?

722


What is the object class in c#?

680


How to use exception handling in stored procedure?

738


Is string mutable in c#?

635


Which are the loop types available in c#?

673


How you will create satellite assemblies?

679


In how many ways you can overload a method?

769


What is boxing in c#?

748


Can I do things in il that I can't do in c#?

697


What is form feed and carriage return?

669


What is generic and non generic collections in c#?

602


What do u mean by delegation of authority?

711