End Google Ads 201810 - BS.net 01 --> How can i get the summary info of function by MethodInfo ?

If i have inside of class A function that will look like this :
///
/// This Function check if the number is bigger then 10
///
///
///
public bool CheckItFunc(int num)
{
return num > 10;
}

I can get Method info by this line :
System.Reflection.MethodInfo mi = typeof(Class A).GetMethod("CheckItFunc");

I can get the name of the function by mi.Name for example and i can find a paramather list and more.
I there any way to get the summary of a function in runtime?

(in this case get the string: " This Function check if the number is bigger then 10") ??

Thanks for all of your answers.



modified on Thursday, August 20, 2009 9:11 AM