void Add(GenericParamConstraint gpc) { if (gpc is null) { return; } Add(gpc.Owner); Push(gpc.Constraint); Add(gpc.CustomAttributes); }
void Load(GenericParamConstraint obj) { if (obj is null) { return; } Add(obj.Owner); Add(obj.Constraint); Add(obj.CustomAttributes); }