Catel.Test.Reflection.ReflectionExtensionsFacts.TheGetPropertyExMethod.ReturnsExplicitInterfacePropertiesWhenEnabled C# (CSharp) Method

ReturnsExplicitInterfacePropertiesWhenEnabled() private method

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

                Assert.IsNotNull(propertyInfo);
            }
        }