I've the list of selected files in a array from particular folder.
String[] allfiles = System.IO.Directory.GetFiles(Target, "*.*", System.IO.SearchOption.AllDirectories);
I required to convert all of this files into the string variable and each line append with "\n" character with help of LINQ. I can do it as like below with help of looping but i required in LINQ Syntax.
String strFileName = string.Empty;
for ( int i = 0; i < allfiles.Length ; i++)
strFileName = strFileName + "\n" + allfiles[1] ;
allfiles[i]