If I have a list such as :
var ListCommandQuery = new List<dynamic> { };
ListCommandQuery.Add(
new { User_ID = "4", User_Name = "jhony" , Mobile_Phone = 054175548999} );
and i want to print only the Properties key names not the values
so the result will show me :
User_ID
User_Name
Mobile_Phone
instead of :
4
jhony
054175548999
How that can be done ?