我试图阅读包含文本和表单字段的单词文档。我需要阅读文档中的所有文本和字段。但是下面的代码总是返回空值。它永远不会进入foreach循环。我不知道这是什么问题,因为构建时没有错误。但是我没有得到输出。我用c#.net 4.6.2编写它,它将用作库文件。代码有什么问题吗?
public class Currency
{
public int Id { get; set; }
public string Name { get; set; }
public string Code { get; set; }
public string Symbol { get; set; }
public string Notes { get; set; }
public ICollection<ExchangeRate> ExchangeRates { get; set; }
public virtual ICollection<ExchangeRate> QuotedExchangeRates { get; set; }
}
public class ExchangeRate
{
public int Id { get; set; }
public DateTime Date { get; set; }
public decimal Rate { get; set; }
public DateTime UpdatedDate { get; set; }
public Currency BaseCurrency { get; set; }
public Currency QuoteCurrency { get; set; }
}
答案 0 :(得分:1)
您可以尝试以内嵌形状访问它们,如下面的代码片段所示
BabyList[i].Directions = Baby.Directions;