public void GetCustomAttributesByName()
        {
            // Type
            var @thisClass = new System_Object_GetCustomAttributesByName_TestClass();
            var @thisEnum  = System_Object_GetCustomAttributesByName_TestEnum.Test;

            // Exemples
            var result1 = @thisClass.GetCustomAttributesByName("System_Object_GetCustomAttributesByName_CustomAttribute");
            var result2 = @thisClass.GetCustomAttributesByName("System_Object_GetCustomAttributesByName_CustomAttribute", false);
            var result3 = @thisClass.GetType().GetCustomAttributesByName("System_Object_GetCustomAttributesByName_CustomAttribute");
            var result4 = @thisClass.GetType().GetCustomAttributesByName("System_Object_GetCustomAttributesByName_CustomAttribute", false);
            var result5 = @thisEnum.GetCustomAttributesByName("System_Object_GetCustomAttributesByName_CustomAttribute");
            var result6 = @thisEnum.GetCustomAttributesByName("System_Object_GetCustomAttributesByName_CustomAttribute", false);

            // Unit Test
            Assert.AreEqual("Test Class", ((System_Object_GetCustomAttributesByName_CustomAttribute)result1[0]).Text);
            Assert.AreEqual("Test Class", ((System_Object_GetCustomAttributesByName_CustomAttribute)result2[0]).Text);
            Assert.AreEqual("Test Class", ((System_Object_GetCustomAttributesByName_CustomAttribute)result3[0]).Text);
            Assert.AreEqual("Test Class", ((System_Object_GetCustomAttributesByName_CustomAttribute)result4[0]).Text);
            Assert.AreEqual("Test Enum", ((System_Object_GetCustomAttributesByName_CustomAttribute)result5[0]).Text);
            Assert.AreEqual("Test Enum", ((System_Object_GetCustomAttributesByName_CustomAttribute)result6[0]).Text);
        }
        public void GetCustomAttributesByName()
        {
            // Type
            var @thisClass = new System_Object_GetCustomAttributesByName_TestClass();
            var @thisEnum = System_Object_GetCustomAttributesByName_TestEnum.Test;

            // Exemples
            var result1 = @thisClass.GetCustomAttributesByName("System_Object_GetCustomAttributesByName_CustomAttribute");
            var result2 = @thisClass.GetCustomAttributesByName("System_Object_GetCustomAttributesByName_CustomAttribute", false);
            var result3 = @thisClass.GetType().GetCustomAttributesByName("System_Object_GetCustomAttributesByName_CustomAttribute");
            var result4 = @thisClass.GetType().GetCustomAttributesByName("System_Object_GetCustomAttributesByName_CustomAttribute", false);
            var result5 = @thisEnum.GetCustomAttributesByName("System_Object_GetCustomAttributesByName_CustomAttribute");
            var result6 = @thisEnum.GetCustomAttributesByName("System_Object_GetCustomAttributesByName_CustomAttribute", false);

            // Unit Test
            Assert.AreEqual("Test Class", ((System_Object_GetCustomAttributesByName_CustomAttribute) result1[0]).Text);
            Assert.AreEqual("Test Class", ((System_Object_GetCustomAttributesByName_CustomAttribute) result2[0]).Text);
            Assert.AreEqual("Test Class", ((System_Object_GetCustomAttributesByName_CustomAttribute) result3[0]).Text);
            Assert.AreEqual("Test Class", ((System_Object_GetCustomAttributesByName_CustomAttribute) result4[0]).Text);
            Assert.AreEqual("Test Enum", ((System_Object_GetCustomAttributesByName_CustomAttribute) result5[0]).Text);
            Assert.AreEqual("Test Enum", ((System_Object_GetCustomAttributesByName_CustomAttribute) result6[0]).Text);
        }