示例#1
0
        static void MakeAttrCorrespondence(ICsvAttr att, CsvParser <T> parser)
        {
            object[]   parameters = new object[] { att.Name, att.Column };
            MethodInfo mi         = att.mi;

            mi.Invoke(parser, parameters);
        }
示例#2
0
        /**
         * This static method will call all the methods(CtorArgs, PropArgs, FieldArgs) that are keeped in all attributes defined
         * this method gets all attributes of the object custom and for all attributes of type ICsvCustomAttributes
         * calls InvokeMethodForCorrespondence
         *
         * */
        public static void MakeAttributeCorrespondence(CsvParser <T> parser, Type custom)
        {
            object[] attrs = custom.GetCustomAttributes(false);

            foreach (object attr in attrs)
            {
                if (attr is ICsvAttr)   //not sure if this isthe best way
                {
                    ICsvAttr att = (ICsvAttr)attr;
                    //att.InvokeMethodForCorrespondence(parser);
                    MakeAttrCorrespondence(att, parser);
                }
            }
        }