Castle.MonoRail.Views.Brail.ExpandDuckTypedExpressions_WorkaroundForDuplicateVirtualMethods.GetSetMethod C# (CSharp) 메소드

GetSetMethod() 개인적인 정적인 메소드

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