Suppose i have one array like... char [] ch={'H','E','L','L','o'};
now i want to convert this arrar into string using recursive function. Then how can i do it???
Hi Friend,
Try this:
import java.util.*;
class ConvertCharArrayToString
{
public static void main(String[] args)
{
StringBuffer buffer=new StringBuffer();
char [] ch={'H','E','L','L','O'};
for(int i=0;i<ch.length;i++){
buffer.append(ch[i]);
}
String str=buffer.toString();
System.out.println(str);
}
}
Thanks
This coding is for java...but i want this in c#
How ro convert char into string using recursive function in c#?? char [] ch={'H','E','L','L','o'};
TO
ans = HELLO