string ss="";for(int i=0;i<s.Length;i++){ ss += s[i].ToString();}
StringBuilder st=new StringBuilder();st=st.Append(s);string res=st.ToString();