“JS Get Class Property” Ответ

JS Get Class Property

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

Получить свойства класса

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

Ответы похожие на “JS Get Class Property”

Вопросы похожие на “JS Get Class Property”

Больше похожих ответов на “JS Get Class Property” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования