AwesomeSauce.Walker.X C# (CSharp) Méthode

X() public méthode

public X ( ) : void
Résultat void
        public void X()
        {
            var type = typeof (object);
            foreach (var propertyInfo in type.GetProperties())
            {
                if(isEntity(propertyInfo))
                {
                    var a = new SingleProperty(propertyInfo);

                    //return some NestedAction?
                }
            }
        }