Example #1
0
        public IType[] GetTypeConstraints()
        {
            return(Util.ArrayUtil.ConvertAll <Type, IType>(
#if DNXCORE50
                       ActualType.GetTypeInfo().GetGenericParameterConstraints(),
#else
                       ActualType.GetGenericParameterConstraints(),
#endif
                       _provider.Map));
        }
Example #2
0
 public IType[] GetTypeConstraints()
 {
     return(Array.ConvertAll <Type, IType>(
                ActualType.GetGenericParameterConstraints(),
                _provider.Map));
 }
Example #3
0
 public IType[] GetTypeConstraints()
 {
     return(Array.ConvertAll <Type, IType>(
                ActualType.GetGenericParameterConstraints(),
                _typeSystemServices.Map));
 }