AwesomeSauce.Walker.X C# (CSharp) 메소드

X() 공개 메소드

public X ( ) : void
리턴 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?
                }
            }
        }