我的 C# 项目中有以下代码:
List<List<Word>> RecognizedPlates =
DetectLicensePlate(img, licensePlateImagesList, filteredLicensePlateImagesList, licenseBoxList);
foreach (List<Word> W in RecognizedPlates)
{
richTextBox1.Text = W.ToString();
}
执行此代码后,任何人都可以帮助阅读List<List<Word>> RecognizedPlates
我在richTextBox 中一无所获的文本。