Magic magic = new Magic();
var nameOfProperty = "Great";
Console.WriteLine(Property.TryValue(magin,nameOfProperty));
public static object TryValue(object objectInstance, string nameOfProperty)
return TryValue(objectInstance, nameOfProperty, out noException);
public static object TryValue(object objectInstance, string nameOfProperty, out bool noException)
var type = objectInstance.GetType();
var propertyInfo = type.GetProperty(nameOfProperty);
var value = propertyInfo.GetValue(objectInstance, null);
return Activator.CreateInstance(type);
throw new AccessViolationException("Sucker");