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;
		}