Click here to Skip to main content
15,913,055 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I have a method like follow




///
/// Converts currency
///

/// <param name="dtRawInput" />Output of the procedure P_FETCH_CONV_CUR
///<param name="FromCurrency" />Three letter code of from currency Ex: USD
///<param name="ToCurrency" />Three letter code of from currency Ex: USD
///<param name="FromAmount" />From currency amount Ex: USD
///<param name="Type" />N for normal conversion, F for fare round and T for tax round
/// <exception cref="FormatException">Why it's thrown.
public static string CurrencyConversion(DataTable dtRawInput, string FromCurrency, string ToCurrency, string FromAmount, string Type)
{
}



When I tried to access this method it is showing summary and param definition on tool tip.

But the problem is

It is not showing anything once after converting this class into dll.

Please help me
C#

Posted

Try to create summary like this
Tip: place the cursor on top of the Method and Press the "/" key three times it will generate the summary snippet...

XML
/// <summary>
   ///
   /// </summary>
   /// <param name="dtRawInput">some</param>
   /// <param name="FromCurrency">currency</param>
   /// <param name="ToCurrency">to</param>
   /// <param name="FromAmount">from</param>
   /// <param name="Type">type</param>
   /// <returns></returns>
    public static string CurrencyConversion(DataTable dtRawInput, string FromCurrency, string ToCurrency, string FromAmount, string Type)
    {
        return null;
    }
 
Share this answer
 
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900