System.Runtime.InteropServices.OutAttribute.GetCustomAttribute C# (CSharp) Method

GetCustomAttribute() static private method

static private GetCustomAttribute ( ParameterInfo parameter ) : Attribute
parameter ParameterInfo
return Attribute
        internal static Attribute GetCustomAttribute(ParameterInfo parameter) 
        { 
            return parameter.IsOut ? new OutAttribute() : null; 
        }
        internal static bool IsDefined(ParameterInfo parameter)