Castle.MonoRail.Views.Brail.ExpandDuckTypedExpressions_WorkaroundForDuplicateVirtualMethods.GetSetMethod C# (CSharp) Méthode

GetSetMethod() private static méthode

private static GetSetMethod ( PropertyInfo property ) : MethodInfo
property System.Reflection.PropertyInfo
Résultat System.Reflection.MethodInfo
		private static MethodInfo GetSetMethod(PropertyInfo property)
		{
			MethodInfo method = property.GetSetMethod(true);
			if (null == method) MemberNotSupported(property);
			return method;
		}