Я пытаюсь записать простой объект в словарь-конвертер, как показано ниже:
public static class SimplePropertyDictionaryExtensionMethods
{
public static IDictionary<string,string> ToSimplePropertyDictionary(this object input)
{
if (input == null)
return new Dictionary<string, string>();
var propertyInfos = from property in input.GetType()
.GetProperties(BindingFlags.Instance | BindingFlags.Public | BindingFlags.FlattenHierarchy | BindingFlags.GetProperty)
where property.CanRead
select property;
return propertyInfos.ToDictionary(x => x.Name, x => input.GetPropertyValueAsString(x));
}
public static string GetPropertyValueAsString(this object input, PropertyInfo propertyInfo)
{
var value = propertyInfo.GetGetMethod().Invoke(input, new object[] {});
if (value == null)
return string.Empty ;
return value.ToString();
}
}
Однако, когда я пытаюсь вызвать это как:
var test = (new { Foo="12", Bar=15 }).ToSimplePropertyDictionary();
Затем происходит сбой сисключение:
[System.MethodAccessException]: {"Attempt to access the method failed: .<>f__AnonymousType0`1.get_Foo()"}
Это просто модель безопасности в Mango, говорящая «Нет»?Есть ли способ обойти это?Такое ощущение, что это общедоступный метод доступа Get - значит, я должен его вызывать?
Stuart