-
Code's Tags
-
Your Codes
-
Reffers
-
Linked Codes
|
Code:
Short link for Twitter:
HTML:
HTML view:
Copy Source | Copy HTML- public static void MyMethod<T>(T item)
- {
- var getMethod = typeof(T).GetMethod("MyMethod");
- if (getMethod == null)
- throw new InvalidOperationException();
- getMethod.Invoke(item, new object[0]);
- }
|