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
What is null propagation c#?
Is c# an open source?
Explain the types of assemblies in .net?
What is a Command Object in C#?
What is the object class in c#?
How to use exception handling in stored procedure?
Is string mutable in c#?
Which are the loop types available in c#?
How you will create satellite assemblies?
In how many ways you can overload a method?
What is boxing in c#?
Can I do things in il that I can't do in c#?
What is form feed and carriage return?
What is generic and non generic collections in c#?
What do u mean by delegation of authority?