Is it possible to add a custom attribute to parameters of method.
For instance I have method as follows
''' <summary>
''' Get addition of given two number
''' </summary>
''' <param name="firstNumber">First number which participate in addition</param>
''' <param name="secondNumber">Second number which participate in addition</param>
''' <returns></returns>
''' <remarks></remarks>
Public Function Add(firstNumber As Integer, secondNumber As Integer) As Double
Return firstNumber + secondNumber
End Function
along with the "param name" and it description, Am i able to add any Tagged value to the parameter?