Game Dev

FieldInfo

Did you know that you could get every information on fields contained in a class ? I didn’t know I could…. I should have googled it 6 months before….  😦

FieldInfo[] fields = this.GetType().GetFields();

foreach (FieldInfo fi in fields)
{
Console.WriteLine(fi.Name);
}

Yeah, I’m still a beginner… And I didn’t know about reflexion ! Shame on me !

I need to refactor every gridview in which I put editable data. It’ll make the code more modular (right now each editable parameter registers itself).
I was wondering how to make a generic Clone function. Without using the reflexion, it’s IMPOSSIBLE !

Let’s code.