Catel.Test.Reflection.ReflectionExtensionsFacts.TheGetPropertyExMethod.ReturnsExplicitInterfacePropertiesWhenEnabled C# (CSharp) Метод

ReturnsExplicitInterfacePropertiesWhenEnabled() приватный Метод

private ReturnsExplicitInterfacePropertiesWhenEnabled ( ) : void
Результат void
            public void ReturnsExplicitInterfacePropertiesWhenEnabled()
            {
                var propertyInfo = typeof(Person).GetPropertyEx("FirstName", allowExplicitInterfaceProperties: true);

                Assert.IsNotNull(propertyInfo);
            }
        }