What I had tried till Now
string Value ="";
foreach (List<string> val in L1)
{
Value = Value + string.Join(",", val) + " // ";
}
Where L1 is of datatype List <List<strings>>
This Works, But its take almost n half hour to complete Is there as many fastest and simple way to achieve this.
>>>
– SimarjeetSingh Panghlia Aug 29 '17 at 09:56>`, this loop will throw an `InvalidCastException` because you declare `val` as `List`.
– René Vogt Aug 29 '17 at 09:57>>>* confuses more though
– Markiian Benovskyi Aug 29 '17 at 09:58>>>
– SimarjeetSingh Panghlia Aug 29 '17 at 10:00>>>? Do you have a code snippet available for that? I feel that there may be something there you could improve upon to achieve desired results
– Steven Brookes Aug 29 '17 at 10:07