Esempio n. 1
0
 /// <summary>
 /// Get concrete implementation of abstract (virtual,interface,..) method on given type.
 /// </summary>
 /// <param name="type">Type where concrete implementation is searched.</param>
 /// <param name="abstractMethod">Abstract method which implementation is searched.</param>
 /// <returns>Concrete implementation if available, <c>null</c> otherwise.</returns>
 public MethodID TryGetImplementation(TypeDescriptor type, MethodID abstractMethod)
 {
     return(_manager.TryGetImplementation(type, abstractMethod));
 }