object app = new
{
name = "hyt",
age = 18
};
Type t = app.GetType();
var name = t.GetType().GetField("name").GetValue(app);
object app = new
{
name = "hyt",
age = 18
};
Type t = app.GetType();
var name = t.GetType().GetField("name").GetValue(app);