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);
            }
        }