MemoScope.Core.Data.ClrDumpObject.GetValue C# (CSharp) Method

GetValue() private method

private GetValue ( ) : object
return object
        private object GetValue()
        {
            var clrObject = new ClrObject(Address, ClrType, IsInterior);
            if (clrObject.HasSimpleValue && ! clrObject.IsNull)
            {
                return clrObject.SimpleValue;
            }
            else
            {
                return null;
            }

        }
        public ClrDumpObject(ClrDump dump, ClrType type, ulong address, bool isInterior=false) : base(dump, type)