MemoScope.Core.Data.ClrObject.ClrObject C# (CSharp) Method

ClrObject() public method

public ClrObject ( ulong address, Microsoft.Diagnostics.Runtime.ClrType type, bool isInterior = false ) : System
address ulong
type Microsoft.Diagnostics.Runtime.ClrType
isInterior bool
return System
        public ClrObject(ulong address, ClrType type, bool isInterior = false)
        {
            Address = address;
            Type = type;
            IsInterior = isInterior;
        }