リフレクションを使用して、CssStyleCollectionクラスのプロパティ(特に、Key-Valueコレクションに興味があります)にアクセスするにはどうすればよいですか?
// this code runns inside class that inherited from WebControl
PropertyInfo[] properties = GetType().GetProperties();
//I'am not able to do something like this
foreach (PropertyInfo property in properties)
{
if(property.Name == "Style")
{
IEnumerable x = property.GetValue(this, null) as IEnumerable;
...
}
}