私のumbracoWebサイトで、次のようなコードを取得しました
var p = currentNode.GetProperty("ucc") as Property;
if (p != null && !string.IsNullOrEmpty(p.Value.Trim()))
mailCC = p.Value;
しかし、それは常にこのようなエラーをスローします
Value = 'p.Value' threw an exception of type 'System.NullReferenceException'
注:P.Valueは注Nullであると確信しています