Answers for "convert c# class object to dictionary string string"

C#
0

c# object to dictionary

public static Dictionary<string, TValue> ToDictionary<TValue>(object obj)
{       
    var json = JsonConvert.SerializeObject(obj);
    var dictionary = JsonConvert.DeserializeObject<Dictionary<string, TValue>>(json);   
    return dictionary;
}
Posted by: Guest on November-10-2021

Code answers related to "convert c# class object to dictionary string string"

C# Answers by Framework

Browse Popular Code Answers by Language