C# プロジェクトに次のコードがあります。
List<List<Word>> RecognizedPlates =
DetectLicensePlate(img, licensePlateImagesList, filteredLicensePlateImagesList, licenseBoxList);
foreach (List<Word> W in RecognizedPlates)
{
richTextBox1.Text = W.ToString();
}
List<List<Word>> RecognizedPlates
このコードを実行した後、I get Nothing in richTextBoxからのテキストを読むのを手伝ってもらえませんか。