“Dapatkan Properti Kelas” Kode Jawaban

js mendapatkan properti kelas

let element = document.querySelector('.preset');
let style = getComputedStyle(element);
let bg = style.backgroundColor;
garzj

Dapatkan Properti Kelas

public static Dictionary<string, object> DictionaryFromType(object atype)
{
    if (atype == null) return new Dictionary<string, object>();
    Type t = atype.GetType();
    PropertyInfo[] props = t.GetProperties();
    Dictionary<string, object> dict = new Dictionary<string, object>();
    foreach (PropertyInfo prp in props)
    {
        object value = prp.GetValue(atype, new object[]{});
        dict.Add(prp.Name, value);
    }
    return dict;
}
Inexpensive Iguana

Jawaban yang mirip dengan “Dapatkan Properti Kelas”

Pertanyaan yang mirip dengan “Dapatkan Properti Kelas”

Lebih banyak jawaban terkait untuk “Dapatkan Properti Kelas” di C#

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya