コード例 #1
0
 void Add(GenericParamConstraint gpc)
 {
     if (gpc is null)
     {
         return;
     }
     Add(gpc.Owner);
     Push(gpc.Constraint);
     Add(gpc.CustomAttributes);
 }
コード例 #2
0
 void Load(GenericParamConstraint obj)
 {
     if (obj is null)
     {
         return;
     }
     Add(obj.Owner);
     Add(obj.Constraint);
     Add(obj.CustomAttributes);
 }