示例#1
0
    public void PrintTest()
    {
        AnimalTypeTestClass testClass = new AnimalTypeTestClass();

        testClass.DogMethod();
        testClass.CatMethod();
        testClass.BirdMethod();
    }
示例#2
0
    //msdn example
    public void test()
    {
        AnimalTypeTestClass testClass = new AnimalTypeTestClass();
        Type type = testClass.GetType();

        foreach (MethodInfo mInfo in type.GetMethods())
        {
            foreach (Attribute attr in Attribute.GetCustomAttributes(mInfo))
            {
                if (attr.GetType() == typeof(AnimalTypeAttribute))
                {
                    Console.WriteLine("Method {0} has a pet {1} attribute.", mInfo.Name, ((AnimalTypeAttribute)attr).Pet);
                }
            }
        }
    }
示例#3
0
    static void Main(string[] args)
    {
        AnimalTypeTestClass testClass = new AnimalTypeTestClass();
        Type type = testClass.GetType();

        // Iterate through all the methods of the class.
        foreach (MethodInfo mInfo in type.GetMethods())
        {
            // Iterate through all the Attributes for each method.
            foreach (Attribute attr in
                     Attribute.GetCustomAttributes(mInfo))
            {
                // Check for the AnimalType attribute.
                if (attr.GetType() == typeof(AnimalTypeAttribute))
                {
                    Console.WriteLine(
                        "Method {0} has a pet {1} attribute.",
                        mInfo.Name, ((AnimalTypeAttribute)attr).Pet);
                }
            }
        }
    }