I have used Reflection.Emit to dynamically generate some types and methods. Everything works fine, but I want to include some descriptive information with the method so that others can use it more easily. You would normall do this by including this above the method:
/// <summary>
/// This is my descriptive information
/// </summary>
/// <param name="paramName1">paramName1 description</param>
/// <param name="paramName2">paramName2 description</param>
/// <param name="glTypeFieldReference"></param>
/// <returns>Information about the return type</returns>
Is it possible to include this information with Reflection.Emit, and if so, how?