Mono.MoonlightTypeConverter.GetGetterMethodForAttachedDP C# (CSharp) 메소드

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

private static GetGetterMethodForAttachedDP ( DependencyProperty dp, object obj ) : MethodInfo
dp System.Windows.DependencyProperty
obj object
리턴 System.Reflection.MethodInfo
		private static MethodInfo GetGetterMethodForAttachedDP (DependencyProperty dp, object obj)
		{
			MethodInfo res = dp.DeclaringType.GetMethod (String.Concat ("Get", dp.Name), BindingFlags.Public | BindingFlags.NonPublic | BindingFlags.Static);
			return res;
		}