Answers for "string to dictionary in c#"

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

C# Answers by Framework

Browse Popular Code Answers by Language