コードは次のとおりです。
foreach (var property in this.allProperties)
{
var propertyItself = element.GetType().GetProperty(property.GetType().Name);
if (propertyItself.PropertyType != typeof(Int32)) // Here I get System.NullReferenceException: Object reference not set to an instance of an object
{ continue; }
if ((int)propertyItself.GetValue(element, null) == 0)
{ return false; }
}
私はこれを理解することはできません。誰かが何が起こっているのか理解できる、または理解できる場合は、私たちを助けてください! 前もって感謝します!!!