System.Dynamic.Utils.TypeExtensions.IsByRefParameter C# (CSharp) Метод

IsByRefParameter() статический приватный Метод

static private IsByRefParameter ( this pi ) : bool
pi this
Результат bool
        internal static bool IsByRefParameter(this ParameterInfo pi)
        {
            // not using IsIn/IsOut properties as they are not available in Silverlight:
            if (pi.ParameterType.IsByRef) return true;

            return (pi.Attributes & (ParameterAttributes.Out)) == ParameterAttributes.Out;
        }
#endif