I have following code in my C# project:
List<List<Word>> RecognizedPlates =
DetectLicensePlate(img, licensePlateImagesList, filteredLicensePlateImagesList, licenseBoxList);
foreach (List<Word> W in RecognizedPlates)
{
richTextBox1.Text = W.ToString();
}
could anyone please help to read text from List<List<Word>> RecognizedPlates
I get nothing in richTextBox after execution this code.
If you would like to make a big string from a list containing lists of words, use
string.Join, like this:This would produce a string with the content of individual lists joined by spaces, separated by
'\n'characters. For example, a list of lists like thiswill be converted to this: