Guest User

Untitled

a guest
May 5th, 2016
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. public class A
  2. {
  3. public static Type Method()
  4. {
  5. return /*Получить тип метода*/;
  6. }
  7. }
  8.  
  9. public class B : A
  10. { }
  11.  
  12. public void Test()
  13. {
  14. Console.WriteLine(A.Method().ToString());
  15. Console.WriteLine(B.Method().ToString());
  16. }
Add Comment
Please, Sign In to add comment