Example #1
0
        public static int Main ()
        {
                BrowsableClass c = new BrowsableClass ();
                MethodInfo mi = c.GetType().GetMethod ("op_Increment");
                
                object[] attributes = mi.GetCustomAttributes
                        (typeof(EditorBrowsableAttribute), false);

                if (attributes.Length != 1)
                        return 1;

                return 0;
        }
Example #2
0
    public static int Main()
    {
        BrowsableClass c  = new BrowsableClass();
        MethodInfo     mi = c.GetType().GetMethod("op_Increment");

        object[] attributes = mi.GetCustomAttributes
                                  (typeof(EditorBrowsableAttribute), false);

        if (attributes.Length != 1)
        {
            return(1);
        }

        return(0);
    }