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

this() public method

public this ( string fieldName ) : ClrObject
fieldName string
return ClrObject
        public ClrObject this[string fieldName]
        {
            get
            {
                ClrInstanceField field = GetField(fieldName);

                if (field == null)
                    throw new ArgumentException($"Field '{fieldName}' not found in Type '{Type.Name}'");

                return this[field];
            }
        }

Same methods

ClrObject::this ( Microsoft.Diagnostics.Runtime.ClrInstanceField field ) : ClrObject
ClrObject::this ( int arrayIndex ) : ClrObject