Catel.Test.Reflection.ReflectionExtensionsFacts.TheGetPropertyExMethod.ReturnsExplicitInterfacePropertiesWhenEnabled C# (CSharp) Méthode

ReturnsExplicitInterfacePropertiesWhenEnabled() private méthode

private ReturnsExplicitInterfacePropertiesWhenEnabled ( ) : void
Résultat void
            public void ReturnsExplicitInterfacePropertiesWhenEnabled()
            {
                var propertyInfo = typeof(Person).GetPropertyEx("FirstName", allowExplicitInterfaceProperties: true);

                Assert.IsNotNull(propertyInfo);
            }
        }