Hi, i'm having trouble understand the dynamic datagrid example.
In specific this bit:
public string GetColumnPropertyExpression(string name, Type type)
{
var expression = $@"it[""{name}""].ToString()";
return type == typeof(int) ? $"int.Parse({expression})" : expression;
}
What property is this referring to, and what is this 'it' which i can only assume is a dictionairy but doesnt appear anywhere in the code.