我有这门课:
public class FileInformation
{
public string Category { get; set; }
public string Message { get; set; }
}
然后,我将数据添加到:
List<FileInformation> theConfigFiles = new List<FileInformation>();
theConfigFiles.Add(new FileInformation() { Category= xxx, Message = yyyy});
如何在消息中获得“OK”的出现?我需要计算Message中“OK”的数量。