コード例 #1
0
        internal void Complete(ISignatureGen sig)
        {
            ParameterBuilder pb = sig.DefineParameter(Position, ParameterAttributes, Name);

            if (CustomAttributes != null && pb != null)
            {
                AttributeGen.ApplyList(ref CustomAttributes, pb.SetCustomAttribute);
            }
        }
コード例 #2
0
        public void Complete(ISignatureGen sig)
        {
            ParameterBuilder pb = sig.DefineParameter(position, attributes, name);

            if (customAttributes != null && pb != null)
            {
                AttributeGen.ApplyList(ref customAttributes, pb.SetCustomAttribute);
            }
        }