internal abstract bool GetCommonMethodTables(ref CommonMethodTables mCommonMTs);
internal override bool GetCommonMethodTables(ref CommonMethodTables mCommonMTs) { return _sos.GetUsefulGlobals(out mCommonMTs) >= 0; }
internal override bool GetCommonMethodTables(ref CommonMethodTables mts) { return(_sos.GetCommonMethodTables(out mts)); }
internal override bool GetCommonMethodTables(ref CommonMethodTables mCommonMTs) { return(RequestStruct(DacRequests.USEFULGLOBALS, ref mCommonMTs)); }
internal override bool GetCommonMethodTables(ref CommonMethodTables mCommonMTs) { return RequestStruct<CommonMethodTables>(DacRequests.USEFULGLOBALS, ref mCommonMTs); }
internal override bool GetCommonMethodTables(ref CommonMethodTables mts) => _sos.GetCommonMethodTables(out mts);