Skip to content
This repository has been archived by the owner on Sep 7, 2021. It is now read-only.

newbe36524/Newbe.ObjectVisitor

Repository files navigation

Ow, my dear fellow, I am very glad that you have paid attention to this repository and made some attempts. This repository is still in a very preliminary stage. After three seconds of careful consideration. I decide to archive this repository, the main reason is that there are not too many time to maintain. Later I'll consider making some simple videos or articles about my experience writing this repository code. Thanks again for your interest.

In the meantime, I suggest that if you still have similar needs, why not focus on the following projects or documents.


Newbe.ObjectVisitor

All Contributors

  • build and scan
  • Codecov
  • Coverage
  • Quality Gate Status
  • Codacy Badge
  • xml document Crowdin
  • documents Crowdin

Banner

You can visit all properties about your class by this lib with high performance as you visit properties in hard coding way.

For example, here is object in your code.

var order = new OrderInfo();

And, you want to print all properties of the order.

for(var pInfo in typeof(OrderInfo).GetProperties())
{
    Console.Writeline($"{pInfo.Name}: {pInfo.GetValue(order)}");
}

By using this lib, you can handle it in this way:

// call .V what is a static extension method
// you get a visitor object for order
var visitor = order.V();

visitor.ForEach(context=>{
    var name = context.Name;
    var value = context.Value;
    Console.Writeline($"{name}: {value}");
}).Run();

// you can also make it into one line
order.V().ForEach(c=> Console.Writeline($"{c.Name}: {c.Value}")).Run();

// or using quick style
order.FormatToString();

Why do I need this?

  • It is faster. This lib is impletmented with Expression Trees that cost 1/10 time as in Reflection way.
  • It is readable. This lib can generate a lambda func to handle the code flow you create that just as your hard coding without reflection.
  • It is extendable. If you can visit all properties of a object in easy way, you can validate them as you wish, change some value if there are something sensitive, creare a mapper like automapper, and etc.

API

Please check out the latest full API documents in site below:

Packages

package version download descrption
Newbe.ObjectVisitor Newbe.ObjectVisitor.Version Newbe.ObjectVisitor.Download Core about Newbe.ObjectVisitor

Contact

QQ Group: 【Newbe.Claptrap CL4P-TP 610394020 】:https://jq.qq.com/?_wv=1027&k=Lkhbwj0o

Stargazers over time

Stargazers over time

Contributors ✨

Thanks goes to these wonderful people (emoji key):


Newbe36524

📝 💻 📖

kotone

🎨

黑洞视界

🤔

This project follows the all-contributors specification. Contributions of any kind welcome!

About

You can visit all properties about your class or struct by this lib with high performance as you visit properties in hard coding way.

Topics

Resources

License

Stars

Watchers

Forks

Sponsor this project

Languages