Answers for "get the key of a value in dictionary c#"

C#
1

get key value from object c#

Type myType = myObject.GetType();
IList<PropertyInfo> props = new List<PropertyInfo>(myType.GetProperties());

foreach (PropertyInfo prop in props)
{
    object propValue = prop.GetValue(myObject, null);

    // Do something with propValue
}
Posted by: Guest on January-06-2021

Code answers related to "get the key of a value in dictionary c#"

C# Answers by Framework

Browse Popular Code Answers by Language