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