Yan Cui
I help clients go faster for less using serverless technologies.
To get the value of a private field of an instance in C#:
var actualNumberOfWinners = evaluator .GetType() .GetField("_numberOfWinners", BindingFlags.NonPublic | BindingFlags.Instance) .GetValue(evaluator);
Similarly, you can quite easily retrieve the value of a const or static field for a type, simply replace BindingFlags.Instance with BindingFlags.Static and call GetValue with null:
var constNumberOfWinners = evaluator .GetType() .GetField("DefaultNumberOfWinners", BindingFlags.NonPublic | BindingFlags.Static) .GetValue(null);
Whenever you’re ready, here are 3 ways I can help you:
- Production-Ready Serverless: Join 20+ AWS Heroes & Community Builders and 1000+ other students in levelling up your serverless game. This is your one-stop shop for quickly levelling up your serverless skills.
- I help clients launch product ideas, improve their development processes and upskill their teams. If you’d like to work together, then let’s get in touch.
- Join my community on Discord, ask questions, and join the discussion on all things AWS and Serverless.
Your post was very helpful for me. Thanks a lot!