Ejemplo n.º 1
0
 // Token: 0x06004660 RID: 18016 RVA: 0x000FFEF0 File Offset: 0x000FE0F0
 public override Type[] GetGenericArguments()
 {
     Type[] array = RuntimeMethodHandle.GetMethodInstantiationPublic(this);
     if (array == null)
     {
         array = EmptyArray <Type> .Value;
     }
     return(array);
 }
Ejemplo n.º 2
0
 public override Type[] GetGenericArguments()
 {
     Type[] methodInstantiationPublic = RuntimeMethodHandle.GetMethodInstantiationPublic(this);
     if (methodInstantiationPublic == null)
     {
         methodInstantiationPublic = new Type[0];
     }
     return(methodInstantiationPublic);
 }
Ejemplo n.º 3
0
        public override Type[] GetGenericArguments()
        {
            Type[] types = RuntimeMethodHandle.GetMethodInstantiationPublic(this);

            if (types == null)
            {
                types = Array.Empty <Type>();
            }
            return(types);
        }
Ejemplo n.º 4
0
 public override Type[] GetGenericArguments()
 {
     return(RuntimeMethodHandle.GetMethodInstantiationPublic((IRuntimeMethodInfo)this) ?? EmptyArray <Type> .Value);
 }